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

#
# TABLE STRUCTURE FOR: sma_captcha
#

DROP TABLE IF EXISTS `sma_captcha`;

CREATE TABLE `sma_captcha` (
  `captcha_id` bigint(13) unsigned NOT NULL AUTO_INCREMENT,
  `captcha_time` int(10) unsigned NOT NULL,
  `ip_address` varchar(16) CHARACTER SET latin1 NOT NULL DEFAULT '0',
  `word` varchar(20) CHARACTER SET latin1 NOT NULL,
  PRIMARY KEY (`captcha_id`),
  KEY `word` (`word`)
) ENGINE=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\"}}');


#
# 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', NULL, '', 'Description for category c386');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1684, 'C24', 'Dewormer', 'c1.png', NULL, '', 'Description for category c312');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1679, 'C47', 'Minerals', 'c1.png', NULL, '', 'Description for category c208');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1661, 'C20', 'AppetiteStimulants', 'c1.png', NULL, '', 'Description for category c44');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1662, 'C1', 'Haematinics', 'c1.png', NULL, '', 'Description for category c46');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1663, 'C18', 'Cold', 'c1.png', NULL, '', 'Description for category c50');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1664, 'C13', 'Coughs', 'c1.png', NULL, '', 'Description for category c56');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1665, 'C9', 'Anti-Hypertensives', 'c1.png', NULL, '', 'Description for category c57');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1666, 'C40', 'Prescriptions', 'c1.png', NULL, '', 'Description for category c60');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1673, 'C38', 'Anti-Histamins', 'c1.png', NULL, '', 'Description for category c150');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1674, 'C42', 'Anti-fungal', 'c1.png', NULL, '', 'Description for category c153');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1675, 'C16', 'NSAIDs', 'c1.png', NULL, '', 'Description for category c167');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1686, 'C43', 'NasalDrops', 'c1.png', NULL, '', 'Description for category c346');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1685, 'C17', 'Lubricant', 'c1.png', NULL, '', 'Description for category c330');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1654, 'C4', 'Medicines', 'c1.png', NULL, '', 'Description for category c1');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1683, 'C23', 'Contraception', 'c1.png', NULL, '', 'Description for category c309');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1682, 'C35', 'Injections', 'c1.png', NULL, '', 'Description for category c252');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1681, 'C3', 'Topical', 'c1.png', NULL, '', 'Description for category c249');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1680, 'C46', 'Anti-Diabetics', 'c1.png', NULL, '', 'Description for category c230');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1678, 'C7', 'Anti-inflamatory', 'c1.png', NULL, '', 'Description for category c201');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1677, 'C32', 'Creams', 'c1.png', NULL, '', 'Description for category c184');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1676, 'C48', 'Antiemetic', 'c1.png', NULL, '', 'Description for category c178');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1672, 'C31', 'Surgicals', 'c1.png', NULL, '', 'Description for category c143');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1671, 'C21', 'EyeDrops', 'c1.png', NULL, '', 'Description for category c116');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1667, 'C6', 'SexualHealth', 'c1.png', NULL, '', 'Description for category c69');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1655, 'C27', 'Candy/Cookies', 'c1.png', NULL, '', 'Description for category c9');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1656, 'C15', 'Uncategorized', 'c1.png', NULL, '', 'Description for category c10');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1657, 'C26', 'Ointments', 'c1.png', NULL, '', 'Description for category c15');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1669, 'C12', 'Multivitamins', 'c1.png', NULL, '', 'Description for category c94');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1670, 'C25', 'Anti-Malaria', 'c1.png', NULL, '', 'Description for category c106');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1668, 'C28', 'Oils', 'c1.png', NULL, '', 'Description for category c73');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1660, 'C19', 'Antibiotic', 'c1.png', NULL, '', 'Description for category c36');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1658, 'C11', 'Antacids', 'c1.png', NULL, '', 'Description for category c16');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1659, 'C5', 'Herbals', 'c1.png', NULL, '', 'Description for category c18');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1688, 'C34', 'Gel', 'c1.png', NULL, '', 'Description for category c633');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1689, 'C50', 'mouthwash', 'c1.png', NULL, '', 'Description for category c634');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1690, 'C45', 'Anti-inflammatory', 'c1.png', NULL, '', 'Description for category c664');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1691, 'C8', 'BloodTonic', 'c1.png', NULL, '', 'Description for category c896');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1692, 'C51', 'Anti-Convulsants', 'c1.png', NULL, '', 'Description for category c1162');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1693, 'C44', 'Disinfectant', 'c1.png', NULL, '', 'Description for category c1172');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1694, 'C22', 'Eyeointment', 'c1.png', NULL, '', 'Description for category c1286');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1695, 'C29', 'Vitamins', 'c1.png', NULL, '', '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=364 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 that this invoice shows the actual price of goods described and that 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 (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', '');


#
# 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=1620 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 (1568, '2022-09-14', 6121, 1339, 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 (1569, '2022-09-14', 5586, 1340, 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 (1570, '2022-09-14', 5847, 1341, 167, 3136, '10.0000', '3.1651', '3.1651', '6.1000', '6.1000', '550.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 (1571, '2022-09-14', 5641, 1342, 167, 2319, '1.0000', '31.1000', '31.1000', '31.1000', '31.1000', '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 (1572, '2022-09-14', 5640, 1343, 167, 3066, '5.0000', '11.1000', '11.1000', '11.1000', '11.1000', '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 (1573, '2022-09-14', 5956, 1344, 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 (1574, '2022-09-14', 6114, 1345, 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 (1575, '2022-09-14', 6456, 1346, 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 (1576, '2022-09-14', 6075, 1347, 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 (1577, '2022-09-14', 6750, 1348, 167, 2125, '1.0000', '6.7000', '6.7000', '6.7000', '6.7000', '63.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 (1578, '2022-09-14', 5540, 1349, 167, 1280, '1.0000', '22.0000', '22.0000', '22.0000', '22.0000', '65.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 (1579, '2022-09-14', 5419, 1350, 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 (1580, '2022-09-14', 6823, 1351, 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 (1581, '2022-09-14', 5792, 1352, 167, 1978, '2.0000', '30.2000', '30.2000', '30.2000', '30.2000', '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 (1582, '2022-09-14', 6074, 1353, 167, 2303, '10.0000', '8.5000', '8.5000', '8.5000', '8.5000', '1743.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1583, '2022-09-14', 6558, 1354, 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 (1584, '2022-09-14', 6316, 1355, 167, 2359, '1.0000', '62.0000', '62.0000', '62.0000', '62.0000', '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 (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);


#
# 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=7 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');


#
# 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=30 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=3884 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');


#
# 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, 48, 1, 141, 1, 140, 2, 1, 1, 2, 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=151 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);


#
# 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=3 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);


#
# 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=6 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);


#
# 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,
  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`) VALUES (1, 22, 5, 1658, 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);


#
# 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=6890 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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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 (6874, '66699023', 'Malar-2 forte DS Tablets 6\\\'S', 1, '9.0000', '10.8000', '0.0000', 'no_image.png', 1670, 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, '66699023', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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 10x1 Ayrtons', 1, '1.2000', '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 (6872, '97726773', 'Deworme 500mg tablets', 1, '2.0000', '2.2000', '0.0000', 'no_image.png', 1684, 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, '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 (6868, '70949987', 'Fiesta Condom Classic', 1, '3.4000', '4.0000', '20.0000', 'e1c5059484e428b9559f5426a89e4391.jpg', 1667, 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, '70949987', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '01981362', 1, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6866, '89649628', 'Fiesta Condom Fruity', 1, '3.5000', '4.0000', '20.0000', '6284d929614f592c9f649d8cffcc48aa.jpg', 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, '89649628', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '39.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '55663121', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '4902.0000', NULL, 1, '', NULL, '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, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'fiesta-condom-extra-thin', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.5000', '4.0000', '0.0000', '0a1cf502e627381dd909cd8d629b2a3e.jpg', 1695, NULL, '', '', '', '', '', '', '94.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, '16.8000', '16.8000', '20.0000', 'no_image.png', 1669, NULL, '', '', '', '', '', '', '194.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, '1457', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '500.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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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', '23.0000', '20.0000', 'no_image.png', 1654, 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, '1450', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '8.4000', '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, '1449', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '58.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, '', '', '', '', '', '', '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, '1447', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '6.5000', '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, '1446', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '6.5000', '20.0000', 'no_image.png', 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, '1445', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '6.5000', '20.0000', 'no_image.png', 1654, 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, '1444', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '143.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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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.0000', '22.0000', '20.0000', 'no_image.png', 1654, 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, '1440', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '4.4000', '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, '1439', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', 'mb-Chlor Eye Drops 0.5%', 1, '2.6000', '2.6000', '20.0000', 'no_image.png', 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, '1438', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '5.2000', '20.0000', 'betasol.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, '1437', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '5.0000', '5.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, '1436', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '125.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', '87.4000', '20.0000', 'no_image.png', 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, '1434', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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', '5.3000', '20.0000', 'no_image.png', 1654, 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, '1431', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '6.1000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '160.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, '1430', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '398.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', '1.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, '1428', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '46.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, '', '', '', '', '', '', '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, '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', '49.2000', '20.0000', 'no_image.png', 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, '1372', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '21.7400', '21.7400', '20.0000', 'no_image.png', 1654, 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, '1374', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '19.3400', '19.3400', '20.0000', 'nugel.jpeg', 1658, NULL, '', '', '', '', '', '', '204.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, '1375', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '11.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, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '36.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, '12.0000', '12.0000', '20.0000', 'femfresh-10ml.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, '1382', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '27.6000', '27.6000', '20.0000', 'femfresh-250ml.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, '1383', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '38.8000', '38.8000', '20.0000', 'K-Y-Jelly.jpeg', 1685, 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, '1384', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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 1% 30g COPHARMA', 1, '15.4000', '15.4000', '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, '1386', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '150.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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '99.6000', '99.6000', '20.0000', 'vitamin-e-1000.jpeg', 1695, 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, '1395', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '78.3000', '78.3000', '20.0000', 'V.-E-200IU.png', 1695, 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, '1396', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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', '3.4000', '20.0000', 'no_image.png', 1658, 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, '1402', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '1406', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '26.5000', '26.5000', '20.0000', 'sudocrem.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, '1409', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '13.0000', '13.0000', '20.0000', 'becotin-syrup.jpeg', 1654, 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, '1410', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '61.8000', '61.8000', '20.0000', 'wellkid-multi.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, '1411', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '9.2100', '20.0000', 'ZIPER.png', 1691, 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, '1412', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '90.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.5000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '268.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, '1415', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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.5000', '5.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, '1417', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '65.0000', '20.0000', 'no_image.png', 1667, 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, '1418', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '630.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', '10.7800', '20.0000', 'Fluxamox.jpeg', 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, '1420', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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', '46.2800', '20.0000', 'no_image.png', 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, '1422', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '13.1400', '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, '1425', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '168.0000', '20.0000', 'no_image.png', 1654, 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, '1367', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '32.4000', '32.4000', '20.0000', 'no_image.png', 1654, 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, '1371', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6769, '1366', 'Metagyl (Metzol) Syrup 200mg/5ml 100', 1, '0.0000', '0.0000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '67.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, '1366', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '5.8000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '34.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, '1365', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '9.5000', '20.0000', 'no_image.png', 1654, 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, '1364', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '6.0000', '20.0000', 'no_image.png', 1654, 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, '1363', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '59.0000', '20.0000', 'seven-seas-cod.jpeg', 1669, 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, '1362', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.9% 10ml', 1, '6.3000', '6.3000', '20.0000', 'bells-normal-saline-drops.jpeg', 1654, NULL, '', '', '', '', '', '', '85.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, '1361', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '46.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', '54.2500', '20.0000', 'acyclovir-denk.jpeg', 1654, 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, '1355', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '158.4000', '158.4000', '20.0000', 'no_image.png', 1665, 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, '1354', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.4000', '5.4000', '20.0000', 'no_image.png', 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, '1352', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '414.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, '85.0000', '85.0000', '20.0000', 'no_image.png', 1659, NULL, '', '', '', '', '', '', '76.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, '1350', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '22.0000', '20.0000', 'no_image.png', 1667, 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, '1349', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '35.0000', '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, '1348', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '6.7000', '20.0000', 'no_image.png', 1675, 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, '1347', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '40.0000', '20.0000', 'jet-2.jpg', 1654, NULL, '', '', '', '', '', '', '159.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, '1346', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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', '10.5600', '20.0000', 'livertone.jpg', 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, '1343', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '9.9600', '9.9600', '20.0000', 'nexcofer.jpeg', 1691, 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, '1341', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '1337', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.6000', '5.6000', '20.0000', 'no_image.png', 1678, 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, '1336', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '3.0000', '20.0000', 'no_image.png', 1691, NULL, '', '', '', '', '', '', '180.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, '1335', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '11.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', '38.2000', '20.0000', 'sudafed-head-and-cong.jpeg', 1656, 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, '1333', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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', '38.0000', '20.0000', 'sudafed-decongestant.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, '1329', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, 'nurofen-syrup-ibpufen-100ml-orange', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6729, '1326', 'Benylin Children Night Cough Syrup 125ml', 1, '40.6000', '40.6000', '20.0000', 'benylin-children-night.jpeg', 1664, 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, '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', '6.0000', '20.0000', 'morgan-antibacterial.jpeg', 1656, 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, '1323', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '52.6000', '52.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, '1322', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '38.4000', '38.4000', '20.0000', 'bonjela-teething.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, '1321', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '-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, '1317', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '11.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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '78.3000', '78.3000', '20.0000', 'Vitamin-E-400-IU-Capsules.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, '1311', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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', '6.9000', '20.0000', 'Bisoprolol-2.5mg-Tablets-28s-Teva.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, '1308', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '1306', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '6.0000', '20.0000', 'loratadine.jpeg', 1654, NULL, '', '', '', '', '', '', '81.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, '1305', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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', '12.0000', '20.0000', 'Carvedilol-12.5mg-Tablets-28s.jpeg', 1656, 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, '1300', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '8.8000', '20.0000', 'Carvedilol-6.25mg-Tablets-28s.jpeg', 1654, 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, '1299', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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', '7.0000', '20.0000', 'folic-acid.jpeg', 1669, NULL, '', '', '', '', '', '', '199.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, '1296', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '13.4400', '13.4400', '20.0000', 'no_image.png', 1661, 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, '1295', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '10.1000', '10.1000', '20.0000', 'no_image.png', 1661, NULL, '', '', '', '', '', '', '44.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, '1294', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.2000', '4.2000', '20.0000', 'no_image.png', 1661, NULL, '', '', '', '', '', '', '471.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, '1293', 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 (6695, '1292', 'Mist FAC (Ferric citrate) 200ml ROKMER', 1, '4.0000', '4.0000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '210.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, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'prowoman-50-capsules-30s', NULL, '0.0000', NULL, 0, 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, '', '', '', '', '', '', '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, '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 ROKMER', 1, '4.0000', '4.0000', '20.0000', 'no_image.png', 1654, 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, '1289', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '6.5000', '20.0000', 'lonart.jpeg', 1670, 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, '1288', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '36.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, '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, '', '', '', '', '', '', '126.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', '80.8000', '20.0000', 'travatan.jpg', 1671, 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, '1285', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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.5000', '20.0000', 'no_image.png', 1658, NULL, '', '', '', '', '', '', '678.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, '1282', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '29.7000', '20.0000', 'no_image.png', 1660, 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, '1281', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '8.2000', '20.0000', 'liverplex.jpg', 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, '1280', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '10.0000', '20.0000', 'goldy.jpg', 1670, 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, '1279', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '10.0000', '20.0000', 'goldy.jpg', 1670, 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, '1278', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '8.3200', '20.0000', 'no_image.png', 1675, 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, '1277', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '9.9900', '20.0000', 'no_image.png', 1675, 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, '1276', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '31.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.0000', '20.0000', 'no_image.png', 1660, NULL, '', '', '', '', '', '', '287.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, '1274', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '317.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 (6673, '1270', 'Kofof Child Suppresant 100ml', 1, '4.9500', '4.9500', '20.0000', 'kofof-syr.jpeg', 1664, 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, '1270', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '4.9500', '4.9500', '20.0000', 'kofof-syr.jpeg', 1664, 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, '1269', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '7.1500', '7.1500', '20.0000', 'kofof-syr.jpeg', 1664, 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, '1268', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '66.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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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.0000', '2.0000', '20.0000', 'no_image.png', 1661, 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, '1264', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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.2000', '10.2000', '20.0000', 'plst.jpg', 1672, 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, '1262', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.5000', '1.5000', '20.0000', 'one.jpeg', 1672, 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, '1261', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '312.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, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6662, '1259', 'Malaria Test Kit', 1, '4.6000', '4.6000', '20.0000', 'malari.jpeg', 1672, NULL, '', '', '', '', '', '', '596.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, '1259', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', '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, '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.5000', '11.5000', '20.0000', 'martins-orange.jpeg', 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, '1253', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '8.7000', '20.0000', 'myfer.jpeg', 1691, 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, '1252', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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', '27.8000', '20.0000', 'caverdi.jpeg', 1665, 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, '1250', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.8000', '3.8000', '20.0000', 'lavina.jpeg', 1686, NULL, '', '', '', '', '', '', '90.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, '1249', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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', '5.7000', '20.0000', 'nexcofer.jpeg', 1691, 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, '1247', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '8.4000', '20.0000', 'stopkof-cnc-syr.jpeg', 1664, NULL, '', '', '', '', '', '', '72.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, '1246', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '8.9000', '8.9000', '20.0000', 'durex.jpeg', 1656, 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, '1244', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '247.0000', '247.0000', '20.0000', 'xarelto.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, '1243', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '162.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.6000', '4.6000', '20.0000', 'secni.jpg', 1660, 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, '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', 'Metro-Z Tablets 20&apos;s', 1, '5.9000', '5.9000', '20.0000', 'no_image.png', 1660, 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, '1240', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '-9.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', '4.7000', '20.0000', 'histazine-syr.jpeg', 1673, 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, '1237', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '24.0000', '20.0000', 'no_image.png', 1679, 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, '1236', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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', '11.8000', '20.0000', 'no_image.png', 1681, 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, '1232', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '11.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, '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, '', '', '', '', '', '', '11.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, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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', '5.4000', '20.0000', 'arton.jpeg', 1669, 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, '1225', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '79.1500', '20.0000', 'par-ayr.jpeg', 1654, 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, '1224', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '99.3000', '20.0000', 'no_image.png', 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, '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, '', '', '', '', '', '', '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, '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', '43.5000', '20.0000', 'no_image.png', 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, '1219', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '32.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, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '129.2000', '129.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, '1211', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '45.6000', '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, '1210', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '15.9500', '15.9500', '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, '1209', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '8.8000', '8.8000', '20.0000', 'no_image.png', 1660, 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, '1208', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '70.0000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '62.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, '1207', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '10.4000', '10.4000', '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, '1206', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '11.8000', '11.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, '1205', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '16.0000', '20.0000', 'no_image.png', 1660, NULL, '', '', '', '', '', '', '117.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, '1204', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '15.5300', '20.0000', 'no_image.png', 1660, 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, '1203', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '148.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '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', '5.5000', '20.0000', 'no_image.png', 1660, NULL, '', '', '', '', '', '', '529.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, '1201', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '5.8000', '5.8000', '20.0000', 'no_image.png', 1691, 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, '1200', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '44.6000', '20.0000', 'no_image.png', 1656, 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, '1198', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '12.9000', '20.0000', 'no_image.png', 1671, 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, '1197', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '16.9000', '16.9000', '20.0000', 'no_image.png', 1671, 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, '1196', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '16.9000', '16.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, '1195', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '16.9000', '16.9000', '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, '1194', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '7.9000', '20.0000', 'no_image.png', 1660, NULL, '', '', '', '', '', '', '81.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, '1192', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '18.9000', '20.0000', 'no_image.png', 1671, 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, '1193', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '74.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.6000', '1.6000', '20.0000', 'no_image.png', 1658, 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, '1190', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.1800', '20.0000', '2a7885393d9d613c13caa719d68e3cfc.jpg', 1660, NULL, '', '', '', '', '', '', '228.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, '9.9000', '9.9000', '20.0000', '7219b0b83c898590f6295e638aafb03b.jpg', 1654, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '<p>Abyvita\r\nCapsule is used for the treatment, control, prevention, & improvement\r\nof 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://www.tabletwise.net/health/blood\\\"></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, 'code128', NULL, '', 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, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '85.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', '121.9000', '20.0000', 'sporanox.jpeg', 1674, 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, '1186', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '41.4000', '20.0000', 'no_image.png', 1654, 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, '1185', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '32.7000', '20.0000', 'no_image.png', 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, '1184', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '46.9900', '20.0000', 'fleming.jpeg', 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, '1182', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '8.2000', '8.2000', '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, '1178', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '328.9000', '20.0000', '870ce42d4c4d23eea625d25e29f48a88.jpg', 1666, NULL, '', '', '', '', '', '', '9.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, 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 (6579, '1176', 'Deep Freez Gel 35g', 1, '35.5400', '35.5400', '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, '1176', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '4.5000', '20.0000', 'no_image.png', 1693, 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, '1175', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '4.5000', '20.0000', 'no_image.png', 1693, 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, '1174', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '9.5000', '20.0000', 'no_image.png', 1693, 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, '1173', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '9.5000', '20.0000', 'no_image.png', 1693, 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, '1172', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '1171', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '21.4000', '20.0000', 'no_image.png', 1664, 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, '1170', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '190.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, '4.0000', '4.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, '1167', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '15.0000', '20.0000', 'no_image.png', 1664, NULL, '', '', '', '', '', '', '157.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, '1166', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '12.9000', '12.9000', '20.0000', 'LEXOFEN.jpeg', 1678, 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, '1165', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '59.7700', '20.0000', 'no_image.png', 1692, 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, '1164', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '88.8800', '20.0000', 'no_image.png', 1692, 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, '1163', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '64.7800', '20.0000', 'no_image.png', 1692, 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, '1162', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '67.0000', '67.0000', '20.0000', 'polygnax.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, '1160', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '72.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, '1159', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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', '41.6300', '20.0000', 'no_image.png', 1680, 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, '1157', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '66.2000', '66.2000', '20.0000', 'no_image.png', 1669, 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, '1156', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.5000', '5.5000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '31.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, '1155', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', 'T-Sec 1g Tablets', 1, '3.5000', '2.0000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '110.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, '1153', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '6.0000', '6.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, '1154', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '3.0000', '3.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, '1152', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '130.0000', '20.0000', 'no_image.png', 1667, 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, '1151', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '85.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', '186.8000', '20.0000', 'd926e19d133990ebe88ab5559b93d7ff.jpg', 1660, NULL, '', '', '', '', '', '', '36.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, '7.8000', '7.8000', '20.0000', 'mto.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, '1145', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '11.2000', '11.2000', '20.0000', 'no_image.png', 1658, 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, '1140', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '7.8000', '7.8000', '20.0000', '5a728c29b97e1ea248c1da17a8a7eca9.jpg', 1660, NULL, '', '', '', '', '', '', '85.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><p>Amoxicillin is also indicated for the prophylaxis of endocarditis.</p><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', '45.6000', '20.0000', 'no_image.png', 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, '1137', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '10.1800', '20.0000', 'no_image.png', 1689, 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, '1136', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '85.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', '93.6000', '20.0000', 'no_image.png', 1660, 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, '1134', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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.2800', '3.2800', '20.0000', 'no_image.png', 1674, 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, '1132', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '142.0500', '20.0000', 'no_image.png', 1669, NULL, '', '', '', '', '', '', '34.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, '1131', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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 28&apos;s (ECL)', 1, '3.9000', '3.9000', '20.0000', 'no_image.png', 1654, 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, '1130', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '7.6000', '7.6000', '20.0000', 'asc-cee.jpeg', 1669, NULL, '', '', '', '', '', '', '73.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, '1129', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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', '10.0000', '20.0000', 'no_image.png', 1691, 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, '1127', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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', '5.9800', '20.0000', 'no_image.png', 1683, NULL, '', '', '', '', '', '', '347.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, '1125', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '132.3000', '132.3000', '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, '1123', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '170.0000', '170.0000', '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, '1121', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '131.5700', '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, '1120', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '90.4100', '90.4100', '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, '1117', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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', '61.2000', '20.0000', 'wellwoman-70.jpeg', 1669, 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, '1115', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '8.7000', '20.0000', 'resq.jpeg', 1658, NULL, '', '', '', '', '', '', '102.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, '1114', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '7.6000', '7.6000', '20.0000', 'ms-oint.jpeg', 1657, 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, '1113', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '13.6000', '13.6000', '20.0000', 'itch.jpg', 1657, 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, '1112', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '6.6000', '6.6000', '20.0000', 'sali.jpeg', 1657, 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, '1111', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '14.0000', '20.0000', 'vagid.jpeg', 1660, 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, '1110', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.6000', '1.6000', '20.0000', 'lofnac-p.jpeg', 1675, 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, '1108', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '3.5000', '3.5000', '20.0000', 'gv-fluc.png', 1654, 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, '1107', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '159.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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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', '3.8800', '20.0000', 'fumet.jpeg', 1660, NULL, '', '', '', '', '', '', '34.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, '1103', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '30.7000', '20.0000', 'deep-heat-rub.jpg', 1657, 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, '1102', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '50.0000', '20.0000', 'procomil-tab.jpeg', 1667, 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, '1100', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '4.9500', '20.0000', 'polygel.jpg', 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, '1099', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '10.6000', '10.6000', '20.0000', 'heptopep.jpeg', 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, '1098', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '40.0000', '20.0000', 'vivadona.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, '1094', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '4.9000', '4.9000', '20.0000', 'dymo.jpeg', 1675, 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, '1093', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '53.0000', '20.0000', 'axa.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, '1092', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '9.6200', '9.6200', '20.0000', 'c-tri.png', 1660, NULL, '', '', '', '', '', '', '400.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, '1088', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '30.0000', '20.0000', 'kefrox.jpeg', 1660, 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, '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, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '17.0000', '17.0000', '20.0000', 'tamsu.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, '1084', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '64.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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '36.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, '7.2000', '7.2000', '20.0000', 'fluconazole.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, '1075', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '98.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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '40.0000', '40.0000', '20.0000', 'no_image.png', 1664, 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, '1064', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '121.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, '42.0000', '42.0000', '20.0000', 'no_image.png', 1675, 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, '1054', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '21.6000', '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, '1053', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '19.5800', '19.5800', '20.0000', 'para-exeter.jpeg', 1654, NULL, '', '', '', '', '', '', '145.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, '1052', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.9000', '3.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, '1051', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '50.6000', '20.0000', 'primo.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, '1050', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '115.0000', '20.0000', 'cyclogest.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, '1049', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '41.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, '', '', '', '', '', '', '93.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', '4.9000', '20.0000', 'dermiron-plus.jpeg', 1654, NULL, '', '', '', '', '', '', '140.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, '1043', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '21.8000', '20.0000', 'download-66.jpeg', 1684, 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, '1042', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '25.8000', '20.0000', 'stugeron.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, '1041', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', 'No-Spa 40mg 100&apos;s', 1, '63.8000', '63.8000', '20.0000', 'download-43.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, '1039', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '168.6000', '168.6000', '20.0000', 'download-44.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, '1038', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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', '34.0000', '20.0000', 'download-47-1.jpeg', 1678, 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, '1035', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '18.1000', '20.0000', 'images.jpeg', 1654, 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, '1034', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '1.9500', '1.9500', '20.0000', 'GENDS.jpg', 1671, NULL, '', '', '', '', '', '', '92.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, '1033', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.5000', '8.5000', '20.0000', 'no_image.png', 1678, 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, '1032', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '133.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, '', '', '', '', '', '', '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, '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, '5.3000', '5.3000', '20.0000', 'download-54.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, '1028', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '360.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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '46.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', '17.5000', '20.0000', 'download-70.jpeg', 1660, 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, '1024', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '5.3000', '20.0000', 'koffex-adt-1.jpg', 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, '1023', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '6.7000', '6.7000', '20.0000', 'download-79.jpeg', 1654, NULL, '', '', '', '', '', '', '11.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, '1022', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '7.9300', '20.0000', 'download-2.jpg', 1662, NULL, '', '', '', '', '', '', '44.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, '1021', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '64.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, '9.9400', '9.9400', '20.0000', 'download-55.jpeg', 1658, 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, '1018', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '4.6700', '4.6700', '20.0000', 'download-83.jpeg', 1664, 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, '1016', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '6.3300', '6.3300', '20.0000', 'no_image.png', 1673, NULL, '', '', '', '', '', '', '758.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, '1015', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '30.0000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '73.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, '1014', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '8.5000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '76.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, '1013', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '240.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, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '31.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, '', '', '', '', '', '', '73.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', 'E-Panol 100ml Syrup Strawberry Flav', 1, '4.6700', '4.6700', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '179.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, '1006', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', 'E-Panol 100ml Syrup Plain', 1, '4.6700', '4.6700', '20.0000', 'e-panol-plain.jpeg', 1654, NULL, '', '', '', '', '', '', '365.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, '1005', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '27.5000', '27.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, '1000', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6402, '999', 'Aciclovir 200mg Tablets 25&apos;s', 1, '18.9800', '18.9800', '20.0000', 'download-97.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, '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, '', '', '', '', '', '', '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, '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, '40.8000', '40.8000', '20.0000', 'download-92.jpeg', 1654, NULL, '', '', '', '', '', '', '0.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, '997', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '273.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, '13.5000', '13.5000', '20.0000', 'images-3.jpeg', 1664, 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, '993', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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.5000', '5.5000', '20.0000', 'mycostat.jpg', 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, '991', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '15.0000', '20.0000', 'luex-baby.jpeg', 1664, 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, '990', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '3.3200', '20.0000', 'vaginax-pess.jpg', 1674, NULL, '', '', '', '', '', '', '102.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, '988', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '29.4500', '20.0000', 'SALOCOLD.jpeg', 1678, 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, '987', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '7.4000', '7.4000', '20.0000', 'SALOCOLD-1.jpeg', 1663, 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, '986', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '4.9500', '4.9500', '20.0000', 'cartef-tabs.jpg', 1670, 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, '984', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.2000', '3.2000', '20.0000', 'paingay.jpeg', 1678, NULL, '', '', '', '', '', '', '695.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, '983', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '7.4000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '150.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, '982', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '9.6600', '20.0000', 'gebexime.jpg', 1660, 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, '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.2000', '8.2000', '20.0000', 'AMCOF-BABY.jpg', 1654, NULL, '', '', '', '', '', '', '120.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, '980', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.1000', '20.0000', 'no_image.png', 1673, NULL, '', '', '', '', '', '', '183.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, '979', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.0000', '4.0000', '20.0000', '448e54906ff5b8e7cb5cb00ffb1e4a5a.jpg', 1660, 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, '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, '', '', '', '', '', '', '52.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, '', '', '', '', '', '', '-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, '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', '26.5000', '20.0000', '7b3b906e83b5c00b8e57a6be69f21f2f.jpg', 1660, 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, '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', '55.0000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '31.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, '974', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.6000', '20.0000', 'no_image.png', 1674, NULL, '', '', '', '', '', '', '2432.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, '973', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '3.5200', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '342.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, '972', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.5000', '1.5000', '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, '971', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '72.2000', '20.0000', 'letamol.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, '970', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '64.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', '24.5000', '20.0000', 'supirocin.jpg', 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, '967', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '55.1000', '55.1000', '20.0000', 'no_image.png', 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, '963', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '30.0000', '20.0000', 'no_image.png', 1660, NULL, '', '', '', '', '', '', '178.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, '962', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '35.9000', '20.0000', 'download-62.jpeg', 1677, 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, '961', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '14.8000', '14.8000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '211.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, '960', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '24.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, '959', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '49.5000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '93.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, '958', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.5000', '20.0000', 'no_image.png', 1684, 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, '957', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '2.7500', '2.7500', '20.0000', 'fenbase-extra.jpg', 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, '955', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '68.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, '', '', '', '', '', '', '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, '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', '2.3000', '20.0000', 'PARAFENAC.jpeg', 1678, NULL, '', '', '', '', '', '', '1095.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, '951', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '705.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', '2.5000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '273.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, '949', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '6.0000', '20.0000', 'no_image.png', 1664, NULL, '', '', '', '', '', '', '38.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, '948', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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', '8.1000', '20.0000', 'no_image.png', 1654, 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, '945', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.0000', '20.0000', 'no_image.png', 1664, 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, '946', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '8.5000', '20.0000', 'happy.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, '944', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '2.2000', '20.0000', 'no_image.png', 1667, NULL, '', '', '', '', '', '', '250.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, '943', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '3.6300', '20.0000', 'no_image.png', 1667, NULL, '', '', '', '', '', '', '117.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, '942', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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&apos;s', 1, '220.0000', '220.0000', '20.0000', '91d1933823e40564d7a3c8b54c9c0b19.png', 1669, NULL, '', '', '', '', '', '', '3.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, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '58.1000', '58.1000', '20.0000', 'no_image.png', 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, '939', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '62.3000', '62.3000', '20.0000', 'wellman-50.jpeg', 1669, NULL, '', '', '', '', '', '', '31.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, '938', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '60.3000', '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, '937', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '60.3000', '60.3000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '11.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, '936', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '30.8700', '30.8700', '20.0000', 'osteo.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, '935', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.5300', '49.5300', '20.0000', 'fero-syru.jpeg', 1662, 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, '934', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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 (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, '', '', '', '', '', '', '-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, '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, '', '', '', '', '', '', 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, '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', '16.8000', '20.0000', 'no_image.png', 1660, 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, '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 (5597, '194', 'ENTEROGEMINA', 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, '194', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '2.6000', '20.0000', 'entramol.png', 1663, NULL, '', '', '', '', '', '', '561.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, '195', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5599, '196', 'EPICROM 2%', 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, '196', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '2.6000', '20.0000', 'epiderm-cream.jpg', 1677, NULL, '', '', '', '', '', '', '892.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, '197', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '4.3000', '20.0000', 'epiderm-cream.jpg', 1677, NULL, '', '', '', '', '', '', '708.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, '198', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5602, '199', 'ESSENTIAL EMBR', 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, '199', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '119.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, '', '', '', '', '', '', '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, '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 (5606, '203', 'EVERSHEEN CREAM', 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, '203', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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 (5608, '205', 'FASTMELT', 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, '205', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5609, '206', 'FAYTEX', 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, '206', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '45.6000', '45.6000', '20.0000', 'feroglobi.png', 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, '207', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '6.0000', '20.0000', 'no_image.png', 1679, 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, '208', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5612, '209', 'FINE CREAM', 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, '209', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5613, '210', 'FINE LIFE BLOOD TONIC', 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, '210', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5614, '211', 'FINE SOAP', 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, '211', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5615, '212', 'FINEST B-12', 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, '212', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.0000', '7.0000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '-25.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, '213', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '39.3000', '20.0000', 'no_image.png', 1660, 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, '214', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.7000', '7.7000', '20.0000', 'flemex-adult.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, '215', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.5000', '6.5000', '20.0000', 'fle-jnr.jpeg', 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, '216', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5620, '217', 'FLUCONAT 150', 1, '0.0000', '0.0000', '20.0000', 'no_image.png', 1656, 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, '217', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5621, '218', 'FLUCOR  NIGHT', 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, '218', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '89.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, '20.1000', '20.1000', '20.0000', 'folig.jpg', 1662, 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, '221', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.1000', '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, '222', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5626, '223', 'FOREVER EASY', 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, '223', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5627, '224', 'FRANKO HERBAL', 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, '224', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5628, '225', 'FRUTELLI', 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, '225', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '8.4000', '8.4000', '20.0000', 'funbact-a.jpeg', 1677, NULL, '', '', '', '', '', '', '152.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, '226', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '6.5000', '20.0000', 'no_image.png', 1678, NULL, '', '', '', '', '', '', '130.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, '228', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5632, '229', 'Gacet 250mg Suppository', 1, '8.0000', '8.0000', '20.0000', 'no_image.png', 1678, NULL, '', '', '', '', '', '', '151.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, '229', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '226.2100', '20.0000', 'galvus-met.jpeg', 1680, 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, '230', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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', '14.7600', '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, '232', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5636, '233', 'GAUZE 10CM', 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, '233', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '27.9800', '27.9800', '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, '234', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5638, '235', 'GBEDEMA BIG MAN', 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, '235', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5639, '236', 'GBEDEMA GARLIC', 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, '236', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '11.1000', '20.0000', 'gebedol.jpeg', 1654, NULL, '', '', '', '', '', '', '242.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, '237', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '31.1000', '20.0000', 'gb-extra.jpg', 1654, 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, '238', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '24.4300', '20.0000', 'gb-plus.jpg', 1654, NULL, '', '', '', '', '', '', '89.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, '239', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5644, '241', 'GEN M TABS 80/480', 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, '241', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5645, '242', 'GENTA INJ', 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, '242', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5646, '243', 'GERMANY VIT C', 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, '243', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5647, '244', 'GILOBA', 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, '244', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '-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, '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 (5649, '246', 'GLIBENCLAMIDE', 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, '246', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '7.9000', '20.0000', 'no_image.png', 1654, 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, '247', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '85.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 (5653, '250', 'GOFEX', 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, '250', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5654, '251', 'Gentian violet (GV PAINT)', 1, '2.0000', '2.0000', '20.0000', 'gv-paint.jpg', 1654, NULL, '', '', '', '', '', '', '666.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, '28.5000', '28.5000', '20.0000', 'gvither.jpeg', 1682, 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, '252', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', 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, '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, '4.2000', '4.2000', '20.0000', 'haemo.jpeg', 1669, NULL, '', '', '', '', '', '', '527.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, '254', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5658, '255', 'HAEMOGLOBIN TEST', 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, '255', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5659, '256', 'HANKERCHIEF', 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, '256', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5660, '257', 'HEALTHY EYE GOOD NEIGH PHARM', 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, '257', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5661, '258', 'HEALTHY MAN', 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, '258', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5662, '259', 'HEMP OIL', 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, '259', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5663, '260', 'HEPTO PEP', 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, '260', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5664, '261', 'HERBAL ESSENTIAL OIL 30ML', 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, '261', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5665, '262', 'HERBAL TEA', 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, '262', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5666, '263', 'HONEY 250', 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, '263', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '65.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 (5668, '265', 'HOT WATER BOTTLE', 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, '265', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5669, '266', 'HOT WATTLEER BOT COVERED', 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, '266', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5670, '267', 'HUGGIES WIPE', 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, '267', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5671, '268', 'Hydrogen Peroxide', 1, '2.1600', '2.1600', '20.0000', 'hydrogen-scaled.jpg', 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, '268', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5672, '269', 'HYPONIC', 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, '269', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.2500', '15.2500', '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, '270', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '1.5000', '20.0000', 'ibucap-cap.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, '271', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '65.0000', '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, 'ideos-500mg-calcium-vitamin-d3', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '30.0000', '20.0000', 'download-85.jpeg', 1659, NULL, '', '', '', '', '', '', '260.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, '273', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '13.2000', '13.2000', '20.0000', 'imboost.jpeg', 1659, NULL, '', '', '', '', '', '', '468.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, '274', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5678, '275', 'IMMUNACE', 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, '275', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5679, '276', 'IMPERIAL LATHER', 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, '276', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5680, '277', 'IMPRESSER 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, '277', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5681, '278', 'IMPRESSER OIL', 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, '278', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5682, '279', 'INDOCID', 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, '279', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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 (5684, '281', 'IROVIT DROP', 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, '281', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5685, '282', 'ITCHTAMOL', 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, '282', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5686, '283', 'JARIFAN 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, '283', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5687, '284', 'JOHNSON BABY OIL S/S', 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, '284', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5688, '285', 'JOINTCARE S/SEAS', 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, '285', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '281.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 (5690, '287', 'JRA B&apos;s', 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, '287', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5691, '288', 'JRA M/S', 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, '288', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5692, '289', 'KAMAGRA 100', 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, '289', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5693, '290', 'KAMAGRA 50', 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, '290', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5694, '291', 'KEPTRILS LOZENGES', 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, '291', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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 (5697, '294', 'KIDICS SRP', 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, '294', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5698, '295', 'KIDIMIN', 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, '295', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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 (5700, '297', 'KIDS BRUSH COLG', 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, '297', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5701, '298', 'KIDS FACE MASK', 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, '298', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5702, '299', 'KISS DRINK', 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, '299', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5703, '300', 'KLEANZ 100ML', 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, '300', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5704, '301', 'Koflet Syrup', 1, '15.0000', '15.0000', '20.0000', 'download-59.jpeg', 1664, NULL, '', '', '', '', '', '', '51.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, '301', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '7.0000', '7.0000', '20.0000', 'kofof-syr.jpeg', 1664, NULL, '', '', '', '', '', '', '74.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, '302', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5706, '303', 'KWIK ACTION', 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, '303', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5707, '304', 'LA WASH', 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, '304', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5708, '305', 'LACTOGEN 1@2', 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, '305', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5709, '306', 'LAWSON HERBAL MIXTURE', 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, '306', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '186.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, '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', '44.8000', '20.0000', 'lemsip-cold-and-flu-max.jpeg', 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, '308', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '1200.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, '', '', '', '', '', '', '77.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.3000', '20.0000', 'letamol.jpeg', 1654, NULL, '', '', '', '', '', '', '503.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, '311', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '13.1400', '20.0000', 'no_image.png', 1684, 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, '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', '3.6000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '36.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, '313', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.4000', '20.0000', 'no_image.png', 1669, NULL, '', '', '', '', '', '', '344.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, '314', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5719, '316', 'LEXPORIN POWDER', 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, '316', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '23.0000', '20.0000', 'lexsporin-oint.jpg', 1657, 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, '317', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5721, '318', 'LG GLIZONE 30', 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, '318', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5722, '319', 'LILY  ROSS BRUSH', 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, '319', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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 28&apos;s', 1, '9.9000', '9.9000', '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, '321', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '9.4000', '9.4000', '20.0000', 'no_image.png', 1665, NULL, '', '', '', '', '', '', '47.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, '322', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '15.9000', '15.9000', '20.0000', 'no_image.png', 1654, 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, '323', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5727, '324', 'LIVING BITTERS 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, '324', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5728, '325', 'LOCID', 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, '325', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '10.5000', '20.0000', 'no_image.png', 1675, NULL, '', '', '', '', '', '', '114.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, '326', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '6.0000', '6.0000', '20.0000', 'lofnac.jpeg', 1675, NULL, '', '', '', '', '', '', '115.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, '327', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '17.2000', '17.2000', '20.0000', 'LONART-DS.jpg', 1670, NULL, '', '', '', '', '', '', '284.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, '328', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5732, '329', 'LOSATARN TEVA 50', 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, '329', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '20.0000', '20.0000', 'no_image.png', 1685, NULL, '', '', '', '', '', '', '47.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, '330', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '19.4000', '19.4000', '20.0000', 'no_image.png', 1667, 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, '331', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5735, '332', 'LUCKY BITTERS', 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, '332', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5736, '333', 'LUCKY V CARE', 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, '333', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '15.0000', '20.0000', 'no_image.png', 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, '334', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '15.0000', '20.0000', 'luex-child-chesty.jpg', 1664, 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, '335', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '15.0000', '20.0000', 'no_image.png', 1664, 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, '336', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '15.5000', '20.0000', 'lufart-ds.jpeg', 1670, NULL, '', '', '', '', '', '', '973.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, '337', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5741, '338', 'LUMETHER  ADULT', 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, '338', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '311.6000', '20.0000', 'f319e22113350cc9b00487e13147d66e.jpg', 1666, NULL, '', '', '', '', '', '', '5.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, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5743, '340', 'M2 TONE', 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, '340', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5744, '341', 'MACRAFOLIN SRP', 1, '0.0000', '0.0000', '20.0000', 'no_image.png', 1656, NULL, '', '', '', '', '', '', '60.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, '341', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5745, '342', 'MAGACID PLUS', 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, '342', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5746, '343', 'MAGACID SUSP', 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, '343', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5747, '344', 'MAGIC SHAVING CREAM', 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, '344', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5748, '345', 'MAGNESIUM TAB', 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, '345', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '134.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 (5750, '347', 'MALABASE', 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, '347', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '10.8000', '20.0000', 'no_image.png', 1670, NULL, '', '', '', '', '', '', '149.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, '348', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5752, '349', 'MALARIA TEST KIT', 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, '349', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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', '7.2000', '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, '351', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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 (5756, '353', 'MALTESERS', 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, '353', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '40.0000', '20.0000', 'mak-2.jpeg', 1654, NULL, '', '', '', '', '', '', '109.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, '354', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5758, '355', 'MASADA', 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, '355', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '16.2000', '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, '356', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5760, '357', 'MAYFAIR SRP', 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, '357', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5761, '358', 'MEDGLOBIN 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, '358', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '20.7400', '20.0000', 'mentat-tab.jpg', 1669, 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, '359', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5763, '360', 'MENTOS CHN', 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, '360', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5764, '361', 'MENTOS COUGH', 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, '361', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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 (5766, '363', 'METRO Z SUSP', 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, '363', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '24.1000', '24.1000', '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, '365', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5769, '366', 'MINAMINO', 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, '366', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '115.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, '', '', '', '', '', '', '71.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 Mal-Titi', 1, '4.5000', '4.5000', '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, '369', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5773, '370', 'MOVATE SAPHARMA', 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, '370', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '15.0000', '20.0000', 'no_image.png', 1678, 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, '371', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '22.1000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '97.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, '372', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5776, '373', 'MUPIROCIN OINT', 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, '373', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '24.0000', '20.0000', 'mycocort.jpg', 1677, 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, '374', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.9000', '16.9000', '20.0000', 'download-100.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, '375', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '15.0000', '15.0000', '20.0000', 'mycolex-cream.jpg', 1677, NULL, '', '', '', '', '', '', '65.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, '376', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '377', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5781, '378', 'NAN 1@2', 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, '378', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5782, '379', 'NANA ADJEI', 1, '0.0000', '0.0000', '20.0000', 'no_image.png', 1656, 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, '379', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5783, '380', 'NAPROX ECL', 1, '0.0000', '0.0000', '20.0000', 'no_image.png', 1656, 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, '380', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5784, '381', 'Naprox EC 500mg Tablets 100&apos;s', 1, '78.0000', '78.0000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '7.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, '381', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '23.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 (5786, '383', 'NCP 100ML', 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, '383', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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', '60.0000', '20.0000', 'neovita-30.jpg', 1669, 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, '385', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '149.2800', '20.0000', 'nexium.jpeg', 1666, 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, '387', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5791, '388', 'NIDO TIN', 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, '388', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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 30&apos;s ECL', 1, '30.2000', '30.2000', '20.0000', 'nifecard.jpeg', 1654, NULL, '', '', '', '', '', '', '100.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, '389', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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 (5794, '391', 'NIVEA SPRAY', 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, '391', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '35.3000', '35.3000', '20.0000', 'download-63.jpeg', 1677, NULL, '', '', '', '', '', '', '59.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, '392', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '49.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, '16.9000', '16.9000', '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, '394', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '20.1300', '20.1300', '20.0000', 'nugel-o.jpg', 1658, 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, '396', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5800, '397', 'ODDYMIN 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, '397', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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 (5802, '399', 'OLANZEPINE TAB 10MG', 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, '399', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '9.8000', '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, '401', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '9.0000', '20.0000', 'Omeprazole-20mg-Tablets-28s-Teva.png', 1654, NULL, '', '', '', '', '', '', '36.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, '402', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5806, '403', 'ORAL B BRUSH', 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, '403', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5807, '404', 'ORAL B PASTE MEDIUM', 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, '404', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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 Orange', 1, '16.6000', '16.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, '405', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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 (5811, '408', 'OVACARE', 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, '408', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5812, '409', 'PAIN OFF', 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, '409', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '4.9000', '4.9000', '20.0000', 'no_image.png', 1657, 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, '410', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '115.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, '411', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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 (5816, '413', 'PARA EXETER TAB', 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, '413', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5817, '414', 'PARA UK', 1, '0.0000', '0.0000', '20.0000', 'no_image.png', 1656, 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, '414', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5818, '415', 'PENICILLIN OINT', 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, '415', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5819, '416', 'PENICILLIN TAB', 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, '416', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5820, '417', 'PERMOXL SRP', 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, '417', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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 (5822, '419', 'PINEK 30', 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, '419', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5823, '420', 'PINEK-20', 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, '420', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '7.0000', '7.0000', '20.0000', 'plaster-2inc.jpg', 1672, 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, '423', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '5.9000', '5.9000', '20.0000', 'polyfer-caps.jpg', 1662, 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, '424', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '9.8000', '9.8000', '20.0000', 'polyfer-forte.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, '425', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '37.5000', '20.0000', 'ponstan.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, '426', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '108.1000', '108.1000', '20.0000', 'prenac.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, '427', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5831, '428', 'PREGNANCY TEST KIT', 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, '428', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5832, '429', 'PROCOLD', 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, '429', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5833, '430', 'PROCOLD  SYR 60ML', 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, '430', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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', '33.9800', '20.0000', 'download-58.jpeg', 1656, 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, '432', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5836, '433', 'PROPER PAD', 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, '433', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5837, '434', 'PROSLUV 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, '434', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5838, '435', 'PROSTACARE', 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, '435', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '220.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, '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, '438', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5842, '439', 'PROSTAT 60', 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, '439', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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 (5844, '441', 'PURE HEAVEN', 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, '441', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5845, '442', 'QUININE SRP', 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, '442', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5846, '443', 'RED BULL', 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, '443', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '6.1000', '20.0000', 'redsun.jpg', 1667, NULL, '', '', '', '', '', '', '550.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, '444', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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.1000', '20.0000', 'download-82.jpeg', 1673, 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, '446', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5850, '447', 'RHIZON TAB', 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, '447', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5851, '448', 'ROMA SPRAY', 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, '448', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5852, '449', 'RONVIT FORTE', 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, '449', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '10.5000', '10.5000', '20.0000', 'rooter-mixture.jpg', 1670, 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, '450', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '8.7800', '8.7800', '20.0000', 'rough-rider.jpeg', 1667, 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, '451', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5855, '452', 'ROX DRINKS', 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, '452', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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 (5857, '454', 'RUBBING ALC S/S', 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, '454', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.0000', '34.0000', '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, '455', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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 (5860, '457', 'SALBUTAMOL TAB', 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, '457', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5861, '458', 'SAMOCID', 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, '458', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5862, '459', 'SAVANNA DRINK', 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, '459', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5863, '460', 'SAVLON 125', 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, '460', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5864, '461', 'SAVLON 500ML', 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, '461', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '795.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 (5866, '463', 'SEDALIN JNR', 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, '463', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5867, '464', 'SELEVITE', 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, '464', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '20.1600', '20.0000', 'septilin.jpg', 1678, NULL, '', '', '', '', '', '', '15.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, '465', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '2.6000', '20.0000', 'shalaterm-dis.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, '467', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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 (5872, '469', 'SHOWER ROLL ON', 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, '469', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '46.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 (5874, '471', 'SIVODERM POWD', 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, '471', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5875, '472', 'SKITTLES', 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, '472', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5876, '473', 'SMIRNOFF', 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, '473', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5877, '474', 'SMOKERS BRUSH', 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, '474', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5878, '475', 'SOFTCARE DIAPER', 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, '475', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5879, '476', 'SOFTCARE PAD', 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, '476', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5880, '477', 'SOFTCARE WIPES', 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, '477', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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 MIX', 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, '478', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '11.0000', '20.0000', 'disp-asp.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, '479', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5883, '480', 'SPANISH GARLIC', 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, '480', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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', '8.4000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '85.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, '482', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '8.6000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '130.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, '483', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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 (5888, '485', 'STREPTOL54/6', 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, '485', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '32.5000', '32.5000', '20.0000', 'no_image.png', 1677, 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, '486', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5890, '487', 'SULFER 18 POWD', 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, '487', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5891, '488', 'SUNLIGHT S/S', 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, '488', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '8.6000', '20.0000', 'super-apeti-plus-syr.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, '489', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '1.6000', '20.0000', 'super-apeti-tbs.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, '490', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '40.0000', '40.8000', '0.0000', 'no_image.png', 1695, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'ascovit-cee-vit-c-tablets-100mg-300', 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 (5895, '492', 'SURFAZ-SN TRIPLE  ACTION CREAM', 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, '492', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5896, '493', 'SWEETEX', 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, '493', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '23.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, '494', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '13.2000', '20.0000', 'download-75.jpeg', 1659, NULL, '', '', '', '', '', '', '328.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '495', 1, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5899, '496', 'TADOL 100', 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, '496', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5900, '497', 'TAGERA FORTE', 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, '497', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '134.9600', '20.0000', 'download-65.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, '498', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5902, '499', 'TCP', 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, '499', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5903, '500', 'TCP 50ML', 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, '500', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5904, '501', 'Tears Natural II Eye Drops', 1, '24.7000', '24.7000', '20.0000', 'tears-naturale.jpeg', 1671, 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, '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 (5905, '502', 'TEGRETOL 200', 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, '502', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '46.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 (5907, '504', 'TETRA OINT', 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, '504', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5908, '505', 'TIGER 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, '505', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5909, '506', 'TIGER SPRAY', 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, '506', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5910, '507', 'TIME HERBAL', 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, '507', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '23.1000', '20.0000', 'titatet.jpeg', 1659, 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, '508', 1, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5912, '509', 'TINY VITE DROP', 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, '509', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5913, '510', 'TOBRADEX EYE DROP', 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, '510', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5914, '511', 'TOP FEVER', 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, '511', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '127.0000', '20.0000', 'Tranexamic-Acid-500mg-Tablets-60s.jpeg', 1654, 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, '512', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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 (5917, '514', 'TRIX ORIS S/S', 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, '514', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5918, '515', 'TRO XIME CEFUROXINE INJ 750', 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, '515', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5919, '516', 'TYPHOID TEST', 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, '516', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5920, '517', 'ULCERPLEX', 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, '517', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5921, '518', 'UNIDUS LONG LOVE CONDOM', 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, '518', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5922, '519', 'VASELINE CREAM', 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, '519', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5923, '520', 'VENE 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, '520', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5924, '521', 'VENTOLIN NEBULES', 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, '521', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5925, '522', 'VENTOLIN SRP ORG', 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, '522', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '10.9000', '10.9000', '20.0000', 'vermox-tab.jpg', 1684, NULL, '', '', '', '', '', '', '1098.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, '523', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5927, '524', 'VICTAGO', 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, '524', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5928, '525', 'VIGONX', 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, '525', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5929, '526', 'VINKA CHOCOLATE', 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, '526', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5930, '527', 'VIP BRUSH', 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, '527', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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 (5933, '530', 'VISIONACE', 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, '530', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5934, '531', 'VIT E-SOVIT', 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, '531', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '37.8200', '39.8200', '0.0000', 'no_image.png', 1660, NULL, '', '', '', '', '', '', '29.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '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, '', '', '', '', '', '', '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, '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 (5937, '534', 'VITRAC S/S', 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, '534', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5938, '535', 'VODY', 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, '535', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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 (5940, '537', 'VOLTAREEN 100', 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, '537', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5943, '540', 'WARFARIN 5MG', 1, '0.0000', '0.0000', '20.0000', 'no_image.png', 1656, 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, '540', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5944, '541', 'WELLBABY DROP', 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, '541', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '58.4000', '58.4000', '20.0000', 'no_image.png', 1669, 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, '543', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '13.8000', '13.8000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '119.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, '6.0000', '6.0000', '20.0000', 'no_image.png', 1684, NULL, '', '', '', '', '', '', '710.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, '545', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '5.2000', '5.2000', '20.0000', 'wormplex-400.jpeg', 1684, NULL, '', '', '', '', '', '', '934.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, '546', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5950, '547', 'YAFO MAN', 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, '547', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5951, '548', 'YAZZ LINER', 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, '548', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5952, '549', 'YAZZ PAD', 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, '549', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '17.9000', '17.9000', '20.0000', 'download-78.jpeg', 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, '552', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '17.8400', '17.8400', '20.0000', 'download-77.jpeg', 1654, NULL, '', '', '', '', '', '', '15.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, '553', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '-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, '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, '16.1000', '16.1000', '20.0000', 'zincovit-syr.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, '555', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '23.7000', '23.7000', '20.0000', 'zicovit.jpeg', 1669, 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, '556', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '6.9900', '20.0000', 'zinvite-syr.jpg', 1669, NULL, '', '', '', '', '', '', '65.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, '559', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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 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, '560', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.2000', '12.2000', '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, '562', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5966, '563', 'ZUDREX SRP', 1, '0.0000', '0.0000', '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, '563', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.0000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '5880.0000', NULL, 1, '', NULL, 'code128', 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, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '10.7800', '20.0000', 'zymax.jpeg', 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, '565', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '8.8000', '20.0000', 'teedar-syr.jpg', 1675, NULL, '', '', '', '', '', '', '335.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, '566', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '9.1500', '9.1500', '20.0000', 'virol.jpg', 1662, 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, '567', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '18.0000', '18.0000', '20.0000', 'asmadrin-2-1.jpg', 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, '568', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '12.4500', '20.0000', 'download-2.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, '569', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '8.3000', '8.3000', '20.0000', 'finelife-blood-tonic.jpg', 1662, 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, '570', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.8000', '8.8000', '20.0000', 'magacid.jpg', 1658, 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, '571', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '9.1500', '9.1500', '20.0000', 'med2-scaled.jpg', 1662, NULL, '', '', '', '', '', '', '138.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, '572', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.7000', '7.7000', '20.0000', 'koffex-adt-1.jpg', 1664, NULL, '', '', '', '', '', '', '402.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, '573', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.5000', '20.0000', 'samalin-adt-125ml.jpg', 1664, NULL, '', '', '', '', '', '', '200.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, '574', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '21.3000', '20.0000', 'Magacid-tab.jpg', 1658, NULL, '', '', '', '', '', '', '23.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, '575', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.0000', '6.0000', '20.0000', 'menthox-syr.jpg', 1664, NULL, '', '', '', '', '', '', '482.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, '576', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.5000', '11.5000', '20.0000', 'Martins-Liver-Salt.jpg', 1658, 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, '577', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', 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, '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, '7.9400', '7.9400', '20.0000', 'SAMALIN-JNR-COUGH.jpg', 1664, NULL, '', '', '', '', '', '', '180.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, '579', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '5.9000', '20.0000', 'rhizin.jpg', 1673, NULL, '', '', '', '', '', '', '294.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, '580', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '19.0000', '19.0000', '20.0000', 'starwin-milk-of-M.jpg', 1658, 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, '581', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '113.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.7000', '13.7000', '20.0000', 'rapinol-tab.jpg', 1654, NULL, '', '', '', '', '', '', '136.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, '583', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.0000', '20.0000', 'samalin-loz1.jpg', 1664, NULL, '', '', '', '', '', '', '152.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, '585', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '28.1000', '28.1000', '20.0000', 'APC-Tablets.jpg', 1658, 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, '586', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '6.8000', '6.8000', '20.0000', 'whitfield-oint-40gm.jpg', 1657, 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, '587', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '37.7000', '37.7000', '20.0000', 'KA.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, '588', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '7.0000', '7.0000', '20.0000', 'dithranol-oint-40mg.jpg', 1657, 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, '589', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '7.0000', '7.0000', '20.0000', 'calamine-oint-40mg.jpg', 1657, NULL, '', '', '', '', '', '', '15.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, '590', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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', '6.0000', '20.0000', 'haemo.jpg', 1662, NULL, '', '', '', '', '', '', '125.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, '592', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '727.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', 'Licntus Jnr. syr 100ml', 1, '3.4000', '3.4000', '20.0000', 'linctus-adt-syr-100ml.jpg', 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, '594', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '5.0000', '20.0000', 'linctus-adt-syr-100ml-1.jpg', 1664, NULL, '', '', '', '', '', '', '65.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, '595', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '7.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, '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, '11.1000', '11.1000', '20.0000', 'vigorix-styr.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, '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', '5.1000', '20.0000', 'paraking-scaled.jpg', 1669, 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, '598', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '6.8000', '6.8000', '20.0000', 'ferrodex-200ml.jpg', 1662, NULL, '', '', '', '', '', '', '7.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, '599', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '6.7000', '20.0000', 'bella-cough-syr-125ml.jpg', 1664, NULL, '', '', '', '', '', '', '95.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, '600', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.0000', '20.0000', 'PMF.jpg', 1657, NULL, '', '', '', '', '', '', '46.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, '601', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6005, '602', 'Sulphur Ointment 40g', 1, '7.2000', '7.2000', '20.0000', 'SULPHUR-OINT.jpg', 1657, 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, '602', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '10.8300', '20.0000', 'PANACIN-TAB.jpg', 1675, NULL, '', '', '', '', '', '', '22.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, '603', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '11.3800', '11.3800', '20.0000', 'no_image.png', 1660, NULL, '', '', '', '', '', '', '226.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, '604', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', 1, '4.9000', '4.9000', '20.0000', 'linctus-adt-syr-100ml-2.jpg', 1664, NULL, '', '', '', '', '', '', '156.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, '605', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '16.5000', '16.5000', '20.0000', 'rooter-tytonic.jpg', 1659, NULL, '', '', '', '', '', '', '190.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, '607', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.2100', '20.0000', 'scimether.jpg', 1670, NULL, '', '', '', '', '', '', '88.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, '608', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '15.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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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', '43.7000', '20.0000', 'images-1.jpeg', 1666, 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, '612', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '245.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, '16.3100', '16.3100', '20.0000', 'ors.jpg', 1654, NULL, '', '', '', '', '', '', '78.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, '617', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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', '3.0000', '20.0000', 'closol-cream.jpg', 1657, 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, '620', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '4.9900', '20.0000', 'vnax-scaled.jpg', 1657, NULL, '', '', '', '', '', '', '34.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, '621', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '0.7200', '20.0000', 'tacizol.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, '622', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '1.8800', '20.0000', 'tacizol-sus.jpg', 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, '623', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '17.2600', '20.0000', 'IMG_20220103_165204_501-rotated.jpg', 1654, 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, '624', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '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, '625', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (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', '4.4300', '20.0000', 'zipferon-cap.png', 1662, 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, '627', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '17.8200', '20.0000', 'blocold.jpg', 1654, NULL, '', '', '', '', '', '', '62.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, '628', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '17.2100', '20.0000', 'gb-forte.jpg', 1654, NULL, '', '', '', '', '', '', '89.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, '629', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '92.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', '41.8000', '20.0000', 'deep-heat-spray.jpg', 1654, 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, '631', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '7.9900', '20.0000', 'deep-heat-spray-1.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, '632', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '4.4300', '20.0000', 'leorub-gel.jpg', 1688, NULL, '', '', '', '', '', '', '25.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, '633', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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', '8.6400', '20.0000', 'omega-oil.jpg', 1687, 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, '635', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '640', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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-Clotrimazole 200mg Pessary', 1, '7.9500', '7.9500', '20.0000', 'CANDID-V3.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, '646', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', 1, '19.6800', '19.6800', '20.0000', 'candid-v-gel.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, '648', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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', '14.9000', '20.0000', 'bonnisan-syr.jpg', 1658, 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, '650', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '33.2100', '20.0000', 'liv-52-tabs.jpg', 1669, 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, '654', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '20.3000', '20.0000', 'live-52-syr.jpg', 1669, 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, '655', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '20.4000', '20.0000', 'mentat-syr.jpg', 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, '656', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '38.5000', '38.5000', '20.0000', 'speman.jpg', 1669, NULL, '', '', '', '', '', '', '23.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, '660', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '7.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, '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 (6067, '664', 'Azure-Retail', 1, '0.0000', '0.0000', '20.0000', 'tablets-medicine-supplement-vitamin-5620566.jpg', 1690, 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, '664', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '3259.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, '', '', '', '', '', '', '2936.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, '', '', '', '', '', '', '2901.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, '', '', '', '', '', '', '-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, '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', '42.0000', '20.0000', 'MR.-Q.jpg', 1659, NULL, '', '', '', '', '', '', '587.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, '675', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '11.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 (6080, '677', 'Potassium Citrate (Pot Cit', 1, '0.0000', '0.0000', '20.0000', 'pot-cit.jpg', 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, '677', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '251.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, '', '', '', '', '', '', '1407.0000', NULL, 1, '', NULL, 'code128', 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, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '72.8000', '20.0000', 'Amaryl-2mg-Tablet.jpg', 1680, 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, '681', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '160.7000', '20.0000', 'amaryl-4mg.jpg', 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, '682', 1, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6086, '683', 'Amedin 10mg Tablets 28&apos;s', 1, '10.5000', '10.5000', '20.0000', 'AMEDIN-10MG.jpg', 1665, 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, '683', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '75.8000', '20.0000', 'med3-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, '684', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '23.5000', '23.5000', '20.0000', 'bioferon-capsules-30s.jpg', 1662, 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, '685', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '73.5000', '20.0000', 'cebrotonin.jpeg', 1666, 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, '686', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '10.0000', '20.0000', 'cipro-eye-oint.jpg', 1660, NULL, '', '', '', '', '', '', '65.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, '687', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '5.9000', '20.0000', 'diclolex-gel.jpg', 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, '688', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '14.9000', '20.0000', 'ferrolex.jpg', 1662, 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, '689', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '8.3200', '20.0000', 'no_image.png', 1670, NULL, '', '', '', '', '', '', '227.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, '692', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '66.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, '', '', '', '', '', '', '289.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, '', '', '', '', '', '', '1380.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, '', '', '', '', '', '', '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, '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', '18.0000', '20.0000', 'haemup.jpeg', 1662, NULL, '', '', '', '', '', '', '34.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, '697', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '101.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, '', '', '', '', '', '', '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, '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, '12.0000', '12.0000', '20.0000', 'kefrox.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, '702', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '1.5000', '20.0000', 'lexocap.jpg', 1678, 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, '703', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '12.0000', '20.0000', 'lexofen-plus.jpg', 1678, NULL, '', '', '', '', '', '', '180.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, '704', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '34.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, '40.9400', '40.9400', '20.0000', 'maalox-plus_5000x.png', 1658, 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, '706', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '34.1000', '20.0000', 'MAALOX-sachet.jpg', 1658, NULL, '', '', '', '', '', '', '15.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, '707', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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.0000', '12.0000', '20.0000', 'metrolex-f.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, '709', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '158.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, '', '', '', '', '', '', '42.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, '272.4000', '272.4000', '20.0000', 'NORVASC-10.jpg', 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, '713', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '327.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, '', '', '', '', '', '', '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, '715', 1, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (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, '14.8500', '14.8500', '20.0000', 'ancigel-o.jpeg', 1658, 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, '717', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '25.5000', '25.5000', '20.0000', 'strobin-LOZ-1.jpeg', 1660, 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, '718', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '47.2000', '20.0000', 'VENT.jpg', 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, '719', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '52.7000', '20.0000', 'strobin-LOZ.jpeg', 1660, NULL, '', '', '', '', '', '', '15.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, '720', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.9000', '18.9000', '20.0000', 'vitaforce.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, '721', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '10.5000', '20.0000', 'lufart-scaled.jpg', 1670, 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, '722', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '11.7000', '20.0000', 'amurox-1-scaled.jpg', 1660, 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, '723', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '7.3000', '20.0000', 'exole-scaled.jpg', 1660, NULL, '', '', '', '', '', '', '99.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, '724', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '4.5000', '4.5000', '20.0000', 'tobufen-scaled.jpg', 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, '725', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', 1, '3.4000', '3.4000', '20.0000', 'kofof-syr.jpeg', 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, '726', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '6.4000', '20.0000', 'kofof-syr.jpeg', 1664, 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, '727', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '165.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, '', '', '', '', '', '', '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, '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.8000', '3.8000', '20.0000', 'chlo-eye.jpeg', 1671, NULL, '', '', '', '', '', '', '194.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, '', '', '', '', '', '', '205.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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '48.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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '23.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, '', '', '', '', '', '', '100.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, '', '', '', '', '', '', '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, '741', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '4.5000', '20.0000', 'blopen.jpeg', 1688, NULL, '', '', '', '', '', '', '66.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, '742', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '74.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', '35.2000', '20.0000', 'cafalgen-scaled.jpg', 1675, 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, '744', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '15.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, '745', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '746', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '6.7000', '20.0000', 'no_image.png', 1661, NULL, '', '', '', '', '', '', '62.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, '748', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '1009.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, '', '', '', '', '', '', '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, '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', '39.1000', '20.0000', 'para.jpg', 1654, NULL, '', '', '', '', '', '', '118.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, '751', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '5.0000', '5.0000', '20.0000', 'zintab.jpg', 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, '753', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '15.0000', '20.0000', 'metrolex-f-susp.jpg', 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, '754', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '8.8000', '8.8000', '20.0000', 'ascoryl-plus.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, '755', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '8.6000', '20.0000', 'cafalgin-junior.jpg', 1675, NULL, '', '', '', '', '', '', '124.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, '756', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', 'Emigkof D Syrup100ml', 1, '5.1000', '5.1000', '20.0000', 'emgikof-d.jpg', 1664, NULL, '', '', '', '', '', '', '25.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, '757', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '25.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, '5.9000', '5.9000', '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, '759', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', 'Emigkof S Syrup100ml', 1, '5.1000', '5.1000', '20.0000', 'emgikof-d.jpg', 1664, 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, '760', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '11.5000', '11.5000', '20.0000', 'heptolif.jpg', 1661, 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, '761', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.0000', '5.0000', '20.0000', 'no_image.png', 1664, 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, '762', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '5.8000', '5.8000', '20.0000', 'no_image.png', 1664, 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, '763', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '8.8000', '8.8000', '20.0000', 'polyfer-forte.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, '764', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '4.3000', '20.0000', 'no_image.png', 1669, NULL, '', '', '', '', '', '', '51.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, '766', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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', '3.1500', '20.0000', 'betasol-cream.jpg', 1677, 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, '770', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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', '3.8500', '20.0000', 'diproson-lotion.jpg', 1677, 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, '772', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '4.1000', '20.0000', 'gogynax-cream.jpg', 1677, NULL, '', '', '', '', '', '', '292.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, '773', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', 1, '3.5000', '3.5000', '20.0000', 'gogynax-tabs.jpg', 1674, NULL, '', '', '', '', '', '', '158.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, '774', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '1.6000', '20.0000', 'ibucap-cap.jpg', 1678, NULL, '', '', '', '', '', '', '1720.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, '775', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '1780.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', '12.2000', '20.0000', 'ketazole.jpg', 1654, 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, '777', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '6.9000', '20.0000', 'kifaru-100-1.jpg', 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, '778', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '5.5000', '20.0000', 'kifaru-50.jpg', 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, '779', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '5.7500', '20.0000', 'leopard-balm.jpg', 1657, NULL, '', '', '', '', '', '', '200.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, '780', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '7.8500', '20.0000', 'magnavit-cap.jpg', 1662, NULL, '', '', '', '', '', '', '42.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, '781', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '7.8500', '20.0000', 'med4.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, '782', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '7.7000', '20.0000', 'omeshal-d.jpg', 1654, 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, '784', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '7.0000', '20.0000', 'polygel.jpg', 1658, NULL, '', '', '', '', '', '', '95.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, '785', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '1.2000', '1.2000', '20.0000', 'rufedol.jpg', 1678, 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, '786', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '6.5000', '20.0000', 'shalaterm.jpg', 1670, NULL, '', '', '', '', '', '', '55.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, '787', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '5.5000', '20.0000', 'shalaterm-dry-syrup-1.jpg', 1670, NULL, '', '', '', '', '', '', '102.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, '788', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '4.2500', '20.0000', 'shalaterm-tabs.jpg', 1670, NULL, '', '', '', '', '', '', '66.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, '789', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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', '5.3000', '20.0000', 'shaltoux-4way.jpg', 1664, NULL, '', '', '', '', '', '', '172.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, '791', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '5.3000', '20.0000', 'shaltoux-cough.jpg', 1664, NULL, '', '', '', '', '', '', '186.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, '792', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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', '6.9000', '20.0000', 'samalin-jnr.jpg', 1664, NULL, '', '', '', '', '', '', '260.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, '798', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '9.5000', '20.0000', 'magacid-60ml.jpg', 1658, NULL, '', '', '', '', '', '', '509.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, '799', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.2000', '5.2000', '20.0000', 'ferrodex-200ml.jpg', 1662, 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, '800', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6204, '801', 'Painoff Tablets 25X4&apos;s', 1, '15.8000', '15.8000', '20.0000', 'painoff.jpg', 1675, 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, '801', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '38.5000', '20.0000', 'CITRO-C.jpg', 1669, NULL, '', '', '', '', '', '', '223.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, '802', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '7.8400', '20.0000', 'contreg.jpeg', 1673, NULL, '', '', '', '', '', '', '62.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, '803', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '112.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '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', '4.5000', '20.0000', 'download-15.jpeg', 1654, NULL, '', '', '', '', '', '', '88.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, '806', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '7.1000', '20.0000', 'BX-SYRUP.jpeg', 1669, NULL, '', '', '', '', '', '', '115.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, '807', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '4.0000', '20.0000', 'contreg-syrup.jpeg', 1673, NULL, '', '', '', '', '', '', '98.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, '808', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '6.6500', '6.6500', '20.0000', 'hemoforce-family.png', 1662, NULL, '', '', '', '', '', '', '158.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, '809', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '6.6500', '20.0000', 'hemoforce-plus.jpeg', 1662, NULL, '', '', '', '', '', '', '144.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, '810', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '2.8000', '20.0000', 'rufenac-gel.jpeg', 1688, NULL, '', '', '', '', '', '', '147.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, '811', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '30.6900', '20.0000', 'amci.jpg', 1660, 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, '812', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '78.1000', '78.1000', '20.0000', 'ampic.jpg', 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, '813', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '2.8800', '2.8800', '20.0000', 'ascorbin-c-syr.jpg', 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, '814', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '13.5800', '13.5800', '20.0000', 'ASCOBIN.jpeg', 1669, NULL, '', '', '', '', '', '', '85.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, '815', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '202.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.0000', '5.0000', '20.0000', 'dynewell-syr.jpeg', 1661, NULL, '', '', '', '', '', '', '445.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, '817', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '12.9800', '12.9800', '20.0000', 'download-4.jpeg', 1661, 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, '818', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '96.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.6000', '20.0000', 'indome.jpg', 1675, 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, 'indomethacin-250mg-capsules-50x10-letap', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6224, '821', 'Letafen (Ibuprofen) Suspension 100ml', 1, '1.9000', '1.9000', '20.0000', 'childcare.jpg', 1678, NULL, '', '', '', '', '', '', '100.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, '821', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '2.8000', '20.0000', 'letalin-1.jpg', 1664, NULL, '', '', '', '', '', '', '687.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, '822', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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', '2.8400', '20.0000', 'promecian.jpg', 1673, NULL, '', '', '', '', '', '', '97.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, '824', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '20.9500', '20.9500', '20.0000', 'vitB.jpg', 1669, 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, '825', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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 (6230, '827', 'test', 1, '3.0000', '3.0000', '20.0000', 'shalaterm-dis.jpeg', 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, '827', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '7.1000', '7.1000', '20.0000', 'amlodi.jpeg', 1665, 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, '829', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '6.0000', '20.0000', 'amlo-5.jpeg', 1665, 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, '830', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '33.3000', '33.3000', '20.0000', 'amoksik-1.jpeg', 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, '831', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '5.9800', '20.0000', 'no_image.png', 1669, 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, 'vatamin-b-complex-syrup-100ml-jacket-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 (6236, '833', 'B Complex Tablets 50X10 ECL', 1, '9.2000', '9.2000', '20.0000', 'no_image.png', 1669, 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, '833', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '6.6000', '6.6000', '20.0000', 'metro.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, '837', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '13.2000', '20.0000', 'multivi.jpg', 1669, 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, '838', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '62.0000', '62.0000', '20.0000', 'no_image.png', 1675, 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, '839', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '57.6000', '57.6000', '20.0000', 'DOXY.jpeg', 1660, 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, '840', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.9900', '2.9900', '20.0000', 'nefluco.jpeg', 1674, 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, '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', '99.3000', '20.0000', 'no_image.png', 1666, NULL, '', '', '', '', '', '', '11.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, '843', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '78.0000', '78.0000', '20.0000', 'no_image.png', 1678, NULL, '', '', '', '', '', '', '47.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, '844', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.4000', '9.4000', '20.0000', 'ECL-TEETHING.jpg', 1654, 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, '845', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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.7100', '4.7100', '20.0000', 'para-16.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, '847', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '-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, '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', '168.6000', '20.0000', 'no_image.png', 1665, 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, '850', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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', '6.0000', '20.0000', 'histazine.jpeg', 1673, NULL, '', '', '', '', '', '', '48.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, '854', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '4.9000', '4.9000', '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, '855', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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.7000', '5.7000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '48.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, '857', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '5.2000', '20.0000', 'no_image.png', 1664, NULL, '', '', '', '', '', '', '120.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, '858', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '9.8000', '9.8000', '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, '859', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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.0000', '6.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, '861', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '11.8000', '20.0000', 'no_image.png', 1669, 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, '862', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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 &amp; Catarrh Tablets 12s', 1, '7.1000', '7.1000', '20.0000', 'no_image.png', 1664, 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, '864', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '23.9000', '20.0000', 'GLUCOPHAGE.jpeg', 1680, 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, '866', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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', '26.0000', '20.0000', 'vikil.jpeg', 1659, NULL, '', '', '', '', '', '', '262.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, '870', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '322.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, '17.6000', '17.6000', '20.0000', 'malakare.jpeg', 1659, 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, '873', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '22.9000', '22.9000', '20.0000', 'tomac.jpeg', 1659, 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, '874', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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.1000', '5.1000', '20.0000', 'no_image.png', 1678, NULL, '', '', '', '', '', '', '373.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, '880', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.4700', '9.4700', '20.0000', 'auntie-mary.jpeg', 1658, NULL, '', '', '', '', '', '', '212.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, '882', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '9.6000', '9.6000', '20.0000', 'no_image.png', 1669, NULL, '', '', '', '', '', '', '25.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, '883', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '13.2000', '20.0000', 'zymzx.jpg', 1660, 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, '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, '56.0000', '56.0000', '20.0000', 'tadol.jpg', 1654, NULL, '', '', '', '', '', '', '90.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, '885', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '108.0000', '108.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, '886', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '122.4000', '20.0000', 'no_image.png', 1660, NULL, '', '', '', '', '', '', '25.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, '887', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '45.6000', '45.6000', '20.0000', 'metagyl.jpg', 1660, NULL, '', '', '', '', '', '', '5.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, '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, '7.8000', '7.8000', '20.0000', 'c71aa1a5e0d18818d4fb297c930b149e.jpg', 1660, 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, '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', '14.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, '890', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', 1, '23.0000', '23.0000', '20.0000', 'images-3.jpeg', 1664, NULL, '', '', '', '', '', '', '78.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, '891', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '32.8000', '32.8000', '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, '892', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '27.5000', '27.5000', '20.0000', 'download-61.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, '893', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '10.4000', '10.4000', '20.0000', 'malar-2-sus.jpg', 1670, NULL, '', '', '', '', '', '', '69.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, '894', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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 6&apos;s', 1, '10.8000', '10.8000', '20.0000', 'malar-2.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, '895', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '14.7000', '14.7000', '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, '897', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '10.5000', '10.5000', '20.0000', 'no_image.png', 1669, 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, '898', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '23.0000', '20.0000', 'download-2022-04-14T103520.858.jpeg', 1654, NULL, '', '', '', '', '', '', '111.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, '899', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.4300', '1.4300', '20.0000', 'lof-tab.jpeg', 1675, 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, '900', 1, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6304, '901', 'Lonart Suspension', 1, '13.5000', '13.5000', '20.0000', 'no_image.png', 1670, NULL, '', '', '', '', '', '', '173.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, '901', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '41.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', '7.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, '906', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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', '17.0000', '20.0000', 'no_image.png', 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, '910', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '33.0200', '20.0000', 'no_image.png', 1665, 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, '911', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', 'Tot\'hema Box of 20 Bulbs', 1, '62.0000', '62.0000', '20.0000', 'tothema.jpeg', 1662, 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, '913', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '19.1900', '20.0000', 'no_image.png', 1675, 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, '914', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '63.2200', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '38.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, '917', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '25.8000', '20.0000', 'no_image.png', 1690, 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, '918', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '21.8300', '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, '919', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '39.0000', '39.0000', '20.0000', 'polygnax.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, '920', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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', '28.6000', '20.0000', 'no_image.png', 1654, 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, '924', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '26.9000', '26.9000', '20.0000', 'no_image.png', 1654, 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, '925', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '67.9000', '20.0000', 'no_image.png', 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, '927', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '1.4900', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '210.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, '928', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '85.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, '', '', '', '', '', '', '138.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, '', '', '', '', '', '', '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, '110', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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.2700', '4.2700', '20.0000', 'CETAPOL-SYRUP-1-600x400-1.jpg', 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, '112', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5516, '113', 'CHIA SEED', 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, '113', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '400.0000', NULL, 1, '', NULL, '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 (5518, '115', 'CHLODIAZEPOX', 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, '115', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', 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, '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', '4.3000', '0.0000', 'no_image.png', 1690, NULL, '', '', '', '', '', '', '390.0000', NULL, 1, '', NULL, '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 (5521, '118', 'CHOCOLATE', 1, '0.0000', '0.0000', '20.0000', 'no_image.png', 1656, 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, '118', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '5.8500', '6.5000', '0.0000', 'no_image.png', 1684, NULL, '', '', '', '', '', '', '450.0000', NULL, 1, '', NULL, '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, '', '', '', '', '', '', '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, '13587208', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '41.6800', '20.0000', 'no_image.png', 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, '122', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '10.0000', '20.0000', 'cipro-eye.jpeg', 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, '123', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5527, '124', 'Ciprolex TZ', 1, '27.0000', '27.0000', '20.0000', 'tz.jpeg', 1660, NULL, '', '', '', '', '', '', '15.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, '124', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '11.5800', '11.5800', '20.0000', 'CIROTAMIN.jpeg', 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, '125', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5529, '126', 'CLINIC CLEAR LOTION SMALL', 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, '126', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5530, '127', 'CLOVES', 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, '127', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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 6&apos;s', 1, '56.1000', '56.1000', '20.0000', 'coaterm.jpg', 1670, NULL, '', '', '', '', '', '', '102.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, '129', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5533, '130', 'COCODAMOL', 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, '130', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5534, '131', 'COLDRELIEF 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, '131', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '2476.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', '52.2000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '15.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, '133', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5537, '134', 'COLGATE BRUSH', 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, '134', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5538, '135', 'COLGATE BRUSH DOUBLE', 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, '135', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5539, '136', 'COLGATE CHARC', 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, '136', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '22.0000', '20.0000', 'colodium.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, '137', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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 (5542, '139', 'COMMIT 50', 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, '139', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5543, '140', 'CONTRA-72', 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, '140', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5544, '141', 'COOL EYES', 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, '141', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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 (5547, '144', 'CRANBERRY', 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, '144', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '413.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, '', '', '', '', '', '', '534.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 (5550, '147', 'CUSSONS POWD S/S', 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, '147', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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, '32.8000', '32.8000', '20.0000', 'no_image.png', 1673, 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, '150', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5554, '151', 'Cytotec', 1, '269.3000', '269.3000', '20.0000', '683b1695f077ca355c8b716a31faa885.png', 1666, NULL, '', '', '', '', '', '', '0.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, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '7.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', '30.0000', '20.0000', 'download-90.jpeg', 1674, 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, '153', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '175.6100', '20.0000', 'no_image.png', 1660, 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, '154', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5558, '155', 'DALACIN SRP', 1, '159.5000', '159.5000', '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, '155', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '8.3000', '20.0000', 'download-76.jpeg', 1657, 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, '156', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5560, '157', 'DARKTACORT CREAM', 1, '0.0000', '0.0000', '20.0000', 'no_image.png', 1656, 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, '157', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5561, '158', 'DAY BY DAY POWDER', 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, '158', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '47.7700', '20.0000', 'deep-freeze-spray.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, '159', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5563, '160', 'DEEP HEAT OINT 15G', 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, '160', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5564, '161', 'DELIVERY MAT', 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, '161', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5565, '162', 'DETOL 250 ML', 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, '162', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5566, '163', 'DEXATROL OINT', 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, '163', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5567, '164', 'DEXORANGE SRP', 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, '164', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5568, '165', 'DIAGELATE SMALL', 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, '165', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '21.6000', '20.0000', 'no_image.png', 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, '166', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '148.0500', '20.0000', 'no_image.png', 1675, 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, '167', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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 (5572, '169', 'DICLOKIN', 1, '0.0000', '0.0000', '20.0000', 'no_image.png', 1656, 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, '169', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '18.0000', '20.0000', 'no_image.png', 1675, NULL, '', '', '', '', '', '', '1080.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, '170', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5574, '171', 'DICLONOVA 100MG', 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, '171', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5575, '172', 'DICLONOVA PLUS', 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, '172', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.7000', '8.7000', '20.0000', 'dicnac.jpg', 1675, NULL, '', '', '', '', '', '', '65.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, '173', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '81.2000', '20.0000', 'DIFLUCAN-150-mg.jpg', 1674, 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, '174', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5578, '175', 'DIGITAL THERMOMETOR', 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, '175', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5579, '176', 'DIHYDROCODEINE 30MG', 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, '176', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.7000', '7.7000', '20.0000', 'diphex.jpg', 1664, 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, '177', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '11.3000', '20.0000', 'no_image.png', 1676, NULL, '', '', '', '', '', '', '197.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, '178', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '12.5000', '20.0000', 'no_image.png', 1676, NULL, '', '', '', '', '', '', '441.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, '179', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5583, '180', 'DON SIMON', 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, '180', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '17.5000', '17.5000', '20.0000', 'DOXY.jpg', 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, '181', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '23.4000', '20.0000', 'DRAGON-TABS.jpeg', 1654, NULL, '', '', '', '', '', '', '58.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, '182', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '28.9000', '20.0000', 'DRAGON.jpeg', 1654, NULL, '', '', '', '', '', '', '285.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, '183', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '355.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, '', '', '', '', '', '', '259.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, '', '', '', '', '', '', '344.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', '7.1500', '20.0000', 'efpac-jnr.jpeg', 1654, NULL, '', '', '', '', '', '', '100.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, '189', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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 (5594, '191', 'EKURO BEWU', 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, '191', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '20.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '84388732', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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 (5509, '106', 'Cartef Suspension', 1, '6.8800', '6.8800', '20.0000', 'cartef.png', 1670, NULL, '', '', '', '', '', '', '46.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, '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, '', '', '', '', '', '', '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, '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, '', '', '', '', '', '', '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, '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', '82.9800', '10.0000', 'no_image.png', 1669, NULL, '', '', '', '', '', '', '12.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '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 (5506, '103', 'CARBOZAB', 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, '103', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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 (5406, '3', 'ZANTAC  150  25CT', 1, '20.0000', '20.0000', '20.0000', 'zantac-150-25ct.jpg', 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, '3', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5407, '4', 'TWEAKER GRAPE ENERGY SHOTS 12/DSP 12 CT 2OZ', 1, '20.0000', '20.0000', '20.0000', 'tweaker-grape-energy-shots-12dsp-12-ct-2oz.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, '4', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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 (5411, '8', 'STAMINA- RX   24CT', 1, '20.0000', '20.0000', '20.0000', 'stamina-rx-24ct.jpg', 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, '8', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (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, '', '', '', '', '', '', '20.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '85373687', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '54358257', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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 (5416, '13', 'ABC *ZINC SRP', 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, '13', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5417, '14', 'ABIDEC SRP', 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, '14', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '5.5000', '5.5000', '20.0000', 'no_image.png', 1657, NULL, '', '', '', '', '', '', '425.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, '15', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '14.9000', '14.9000', '20.0000', 'download-60.jpeg', 1658, NULL, '', '', '', '', '', '', '59.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, '16', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5420, '17', 'ACNE CLEAR', 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, '17', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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 (5423, '20', 'ADONKO ENERGY', 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, '20', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5424, '21', 'ADUSA MIXTURE', 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, '21', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5425, '22', 'ADUTWUMWAA BIT', 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, '22', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5426, '23', 'AFRO MOSES', 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, '23', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5427, '24', 'Agbeve Tonic', 1, '13.2000', '13.2000', '20.0000', 'agbeve.jpg', 1659, NULL, '', '', '', '', '', '', '151.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 (5428, '25', 'AIRFRESHNER HANGING', 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, '25', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5429, '26', 'ALAFIA BITS', 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, '26', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5430, '27', 'ALEVE PAIN KILLER', 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, '27', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5431, '28', 'ALMOND SEED', 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, '28', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5432, '29', 'ALVITE 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, '29', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5433, '30', 'ALWAYS DOUBLE', 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, '30', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5434, '31', 'ALWAYS MAXI', 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, '31', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '7.4000', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '198.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, '32', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5436, '33', 'AMITRIPTLINE 25MG', 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, '33', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5437, '34', 'AMLODIPINE 5MG TEVA', 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, '34', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5438, '35', 'AMLODIPINE TEVA 10', 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, '35', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5439, '36', 'Amoksiklav 1g Tablet 10s', 1, '48.2000', '48.2000', '20.0000', '1000amok.jpeg', 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, '36', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '3.4100', '20.0000', 'AMOCXI.jpg', 1660, NULL, '', '', '', '', '', '', '556.0000', NULL, 1, '', NULL, 'code128', 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.7000', '1.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, '38', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5442, '39', 'ANAFRANIL25', 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, '39', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5443, '40', 'ANDREWS LIVER SALTS', 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, '40', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5444, '41', 'ANTACID BELLS', 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, '41', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5445, '42', 'ANUSOL OINT', 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, '42', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5446, '43', 'APC 4S', 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, '43', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '19.8000', '19.8000', '20.0000', 'no_image.png', 1661, 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, '44', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '100.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 (5450, '47', 'ARABA BAZEEN', 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, '47', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '5.8600', '20.0000', 'no_image.png', 1654, NULL, '', '', '', '', '', '', '1550.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, '48', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '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, '7.4000', '7.4000', '20.0000', 'Ascorly-C-scaled.jpg', 1663, 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, '50', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5454, '51', 'ASMADRIN', 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, '51', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '16.8000', '20.0000', 'asmanol.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, '52', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '25.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', '5.9000', '20.0000', 'asthalex.jpg', 1664, 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, '56', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '235.7300', '20.0000', 'atacand.jpeg', 1665, NULL, '', '', '', '', '', '', '6.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, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '194.0000', '20.0000', '402f2cd03fc69f5bf92dc5a241c2f66d.jpg', 1665, NULL, '', '', '', '', '', '', '5.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, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '7.8000', '20.0000', 'no_image.png', 1665, 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, '59', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '9.8000', '9.8000', '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, '60', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5464, '61', 'Atorvastatin 10mg Tablets 28&apos;s', 1, '7.0000', '7.0000', '20.0000', 'no_image.png', 1666, 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, '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', '72.6400', '20.0000', 'images-2.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, '62', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5466, '63', 'AVOMINE TAB', 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, '63', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '45.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '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', 'no_image.png', 1678, NULL, '', '', '', '', '', '', '26.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '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 (5470, '67', 'B COMPLEX TAB LOCAL Letap', 1, '0.0000', '0.0000', '20.0000', 'no_image.png', 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, '67', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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 Lintus 100ml ECL', 1, '5.0400', '5.0400', '20.0000', 'BABY-CO.jpeg', 1664, NULL, '', '', '', '', '', '', '101.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, '68', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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.5000', '4.5000', '20.0000', 'no_image.png', 1667, NULL, '', '', '', '', '', '', '-11.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, '69', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '3.9600', '3.9600', '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, '70', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5474, '71', 'BASEFENAC-P', 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, '71', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5475, '72', 'BELA COUGH', 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, '72', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5476, '73', 'Borges Olive Oil 125ml', 1, '13.3000', '13.3000', '20.0000', 'borges.jpeg', 1668, 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, '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, '18.3000', '18.3000', '20.0000', 'bells-teething.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, '74', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '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, '75', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5479, '76', 'BENDRO 5 LOCAL', 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, '76', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5480, '77', 'BENILIN INFANT', 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, '77', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5481, '78', 'BIC RAZOR', 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, '78', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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 (5483, '80', 'BIOFGERON 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, '80', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5484, '81', 'BIOVID FORTE', 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, '81', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5485, '82', 'BISACODYL', 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, '82', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5486, '83', 'BOAFO OINT', 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, '83', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '18.9000', '18.9000', '20.0000', 'BONAPLEX.jpg', 1661, 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, '84', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5488, '85', 'BONGELA ADULT', 1, '0.0000', '0.0000', '20.0000', 'bongela-adult.jpeg', 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, '85', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5489, '86', 'BONISAN', 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, '86', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5490, '87', 'BORGES 250ML', 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, '87', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5491, '88', 'BORIC ACID EAR DROP', 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, '88', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5492, '89', 'BOUNTY', 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, '89', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5493, '90', 'BRAINWESE OMEGA 3  150ML', 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, '90', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5494, '91', 'BROWN SUGAR', 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, '91', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5495, '92', 'BRUFEN 400', 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, '92', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5496, '93', 'BUMPER CD', 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, '93', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '5.6000', '20.0000', 'BX-SYRUP.jpeg', 1669, 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, '94', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5498, '95', 'CALAMINE LOTION LOCAL', 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, '95', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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', '3.8000', '20.0000', 'cal-b12.jpg', 1669, NULL, '', '', '', '', '', '', '116.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, '96', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '46.3000', '46.3000', '20.0000', 'calpol.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, '97', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '36.4900', '36.4900', '20.0000', 'cal-6.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, '98', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5502, '99', 'CAMEL 125ML', 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, '99', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '', '', '', '', '', '', '72.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '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, '', '', '', '', '', '', '29.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '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=3139 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', '10.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', '500.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', '11.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', '3.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', '33.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', '20.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', '19.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', '22.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', '18.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', '80.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', '9.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', '7.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', '7.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', '3.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', '1.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', '7.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', '9.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', '30.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', '38.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', '3.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', '30.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', '32.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', '23.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', '84.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', '6.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', '63.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', '23.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', '1.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', '16.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', '18.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', '22.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', '32.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', '8.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', '17.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', '18.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', '9.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', '7.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', '2.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', '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 (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', '40.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', '24.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', '46.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', '8.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', '7.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', '13.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', '41.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', '3.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', '22.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', '75.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', '11.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', '40.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', '7.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', '1.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', '150.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', '25.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', '65.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', '45.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', '29.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', '19.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', '5.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', '16.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', '75.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', '15.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', '30.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', '18.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', '20.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', '7.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', '14.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', '12.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', '21.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', '3.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', '5.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', '4.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', '6.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', '26.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', '8.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', '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 (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', '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 (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', '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 (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', '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 (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', '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 (326, 9, NULL, 6835, '1432', 'Eskypan 10mg (10x1x10)', NULL, '3.6000', '26.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.6000', '16.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', '2.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', '43.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', '15.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', '38.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', '1.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', '41.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', '9.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', '1.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', '41.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', '4.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', '25.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', '19.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', '7.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', '7.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', '12.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', '8.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', '18.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', '48.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', '14.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', '21.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', '2.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', '29.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', '11.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', '28.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', '28.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', '6.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', '1.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', '3.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', '9.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', '1.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', '72.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', '6.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', '16.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', '6.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', '8.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', '11.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', '4.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', '9.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', '5.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', '55.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', '3.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', '18.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', '25.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', '12.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', '7.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', '3.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', '1.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', '4.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', '1.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', '1.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', '1.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', '1.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', '13.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', '17.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', '45.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', '66.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', '9.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', '18.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', '29.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', '51.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', '2.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', '2.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', '37.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', '26.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', '31.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', '2.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', '3.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', '3.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', '2.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', '13.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', '30.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', '28.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', '14.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', '10.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', '5.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', '45.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', '14.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', '76.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', '32.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', '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 (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', '15.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', '31.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', '6.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', '11.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', '25.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', '17.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', '2.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', '200.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', '147.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', '21.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', '27.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', '20.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', '19.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', '29.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', '102.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', '31.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', '73.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', '121.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', '526.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', '18.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', '35.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', '33.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', '4.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', '6.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', '29.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', '69.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', '25.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', '42.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', '5.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', '23.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', '11.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', '54.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', '34.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', '7.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', '727.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', '55.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', '13.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', '15.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', '12.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', '1.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', '130.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', '6.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', '2.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', '12.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', '12.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', '26.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', '26.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', '3.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', '1.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', '12.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', '50.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', '51.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', '65.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', '20.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', '6.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', '6.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', '60.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', '29.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', '9.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', '100.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', '39.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', '18.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', '11.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', '10.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', '71.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', '15.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', '10.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', '28.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', '61.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', '35.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', '32.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', '60.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', '20.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', '35.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', '4.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', '9.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', '85.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', '9.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', '65.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', '149.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', '12.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', '109.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', '15.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', '52.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', '24.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', '51.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', '145.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', '73.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', '32.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', '27.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', '3.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', '9.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', '40.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', '7.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', '1.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', '30.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', '17.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', '40.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', '19.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', '13.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', '10.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', '22.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', '42.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', '16.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', '10.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', '33.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', '41.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', '8.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', '32.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', '24.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', '10.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', '23.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', '24.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', '6.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', '9.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', '34.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', '11.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', '20.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', '84.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', '35.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', '52.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', '34.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', '46.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', '1.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', '19.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', '81.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', '44.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', '126.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', '11.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', '33.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', '50.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', '29.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', '21.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', '60.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', '37.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', '15.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', '29.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', '26.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', '72.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', '3.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', '37.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', '6.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', '24.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', '37.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', '24.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', '16.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', '194.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', '12.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', '315.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', '57.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', '34.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', '5.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', '44.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', '40.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', '77.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', '934.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', '98.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', '29.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', '46.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', '36.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', '14.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', '134.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', '47.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', '186.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', '61.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', '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 (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', '1.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', '287.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', '30.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', '50.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', '115.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', '32.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', '13.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', '65.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', '9.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', '3.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', '11.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', '21.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', '199.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', '5.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', '29.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', '16.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', '18.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', '35.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', '15.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', '75.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', '12.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', '10.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', '19.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', '6.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', '398.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', '2.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', '16.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', '16.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', '162.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', '70.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', '4.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', '6.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', '30.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', '17.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', '3.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', '57.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', '273.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', '211.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', '78.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', '90.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', '90.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', '85.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', '10.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', '19.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', '10.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', '179.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', '91.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', '61.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', '81.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', '122.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', '23.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', '9.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', '28.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', '19.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', '1.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', '10.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', '16.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', '2.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', '23.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', '140.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', '5.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', '150.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', '8.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', '2.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', '3.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', '18.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', '11.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', '31.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', '67.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', '66.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', '15.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', '31.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', '65.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', '4.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', '14.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', '18.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', '44.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', '30.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', '10.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', '131.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', '18.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', '74.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', '79.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', '37.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', '59.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', '13.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', '15.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', '1.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', '4.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', '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 (1925, 33, NULL, 6100, '697', 'Haem Up Syrup 200ml', NULL, '18.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '1.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', '1.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', '317.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', '117.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', '250.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', '596.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', '70.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', '345.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', '284.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', '4.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', '2.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', '50.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', '382.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', '24.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', '180.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', '5.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', '5.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', '5.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', '10.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', '347.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', '19.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', '133.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', '25.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', '360.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', '4.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', '20.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', '38.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', '36.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', '6.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', '984.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', '9.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', '19.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', '133.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', '15.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', '180.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', '16.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', '22.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', '7.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', '15.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', '99.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', '33.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', '15.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', '6.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', '34.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', '16.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', '17.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', '384.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', '37.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', '173.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', '46.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', '69.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', '36.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', '14.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', '4.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', '40.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', '84.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', '17.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', '20.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', '81.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', '44.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', '11.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', '13.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', '14.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', '86.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', '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 (1942, 33, NULL, 6449, '1046', 'Diagellates Elixir 250ml', NULL, '25.5000', '41.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1045.5000', '41.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', '29.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', '45.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', '245.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', '33.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', '5.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', '115.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', '14.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', '40.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', '55.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', '180.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', '35.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', '36.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', '40.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', '30.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', '430.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', '9.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', '194.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', '70.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', '120.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', '26.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', '180.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', '50.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', '8.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', '73.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', '118.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', '115.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', '106.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', '50.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', '30.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', '55.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', '10.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', '10.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', '1.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', '1.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', '5.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', '40.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', '29.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', '5.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', '45.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', '9.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', '12.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', '20.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', '15.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', '60.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', '113.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', '213.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', '43.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', '73.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', '12.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', '28.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', '65.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', '322.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', '95.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', '99.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', '22.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', '57.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', '157.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', '50.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', '27.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', '60.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', '20.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', '160.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', '200.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', '8.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', '168.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', '120.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', '192.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', '43.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', '180.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', '149.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', '1.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', '41.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', '24.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', '29.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', '191.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', '37.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', '95.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', '17.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', '20.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', '570.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', '480.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', '30.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', '117.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', '60.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', '57.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', '40.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', '22.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', '1.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', '31.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', '1.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', '1.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', '1.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', '1.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', '25.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', '1.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', '3.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', '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 (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', '1.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', '1.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', '39.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', '23.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', '110.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', '112.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', '37.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', '51.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', '202.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', '19.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', '138.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', '23.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', '5.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', '85.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', '8.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', '12.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', '63.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', '55.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', '59.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', '29.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', '10.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', '3.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', '120.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', '18.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', '30.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', '390.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', '1326.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', '72.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', '59.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', '20.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', '360.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', '300.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', '349.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', '28.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', '60.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', '80.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', '55.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', '80.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', '293.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', '32.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', '117.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', '324.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', '24.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', '178.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', '40.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', '60.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', '145.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', '23.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', '2400.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', '157.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', '160.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', '129.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', '35.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', '113.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', '250.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', '135.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', '300.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', '23.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', '37.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', '587.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', '350.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', '303.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', '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 (2348, 41, NULL, 5840, '437', 'Prostacure X', NULL, '27.5000', '32.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '880.0000', '32.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', '410.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', '320.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', '600.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', '178.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', '300.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', '360.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', '100.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', '30.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', '96.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', '200.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', '290.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', '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 (2252, 42, NULL, 5969, '566', 'Teedar Syrup 125ml', NULL, '8.8000', '240.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '2112.0000', '215.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', '23.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', '80.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', '88.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', '98.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', '32.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', '29.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', '110.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', '110.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', '12.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', '60.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', '69.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', '100.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', '52.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', '40.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', '34.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', '30.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', '543.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', '50.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', '147.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', '1561.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', '18.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', '60.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', '54.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', '75.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', '392.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', '45.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', '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 (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', '40.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', '40.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', '72.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', '21.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', '60.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', '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 (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', '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 (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', '1200.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', '1000.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', '127.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', '13.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', '38.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', '1738.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', '179.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', '30.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', '295.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', '47.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', '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 (2309, 42, NULL, 6385, '982', 'Amcof Junior 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 (2310, 42, NULL, 5970, '567', 'Virol blood tonic 200ml', NULL, '9.1500', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '366.0000', '39.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', '108.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', '29.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', '37.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', '24.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', '56.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', '481.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', '48.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', '10.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', '110.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', '59.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', '60.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', '57.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', '286.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', '33.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', '23.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', '15.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', '106.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', '193.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', '15.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', '24.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', '36.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', '1.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', '-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 (2398, NULL, NULL, 6658, '', '', 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 (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', '-11.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '8.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', '100.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', '42.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', '28.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', '640.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', '50.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', '21.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', '1.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', '5.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', '8.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', '10.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', '-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 (2417, NULL, NULL, 6421, '', '', 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 (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', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '1.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', '19.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', '17.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', '4.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', '1.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', '-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 (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', '-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 (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', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '81.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', '44.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', '24.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', '17.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', '59.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', '23.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', '57.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', '89.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', '50.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', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '3.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', '2.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', '-25.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '-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 (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', '-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 (2521, NULL, NULL, 6077, '', '', 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 (2522, NULL, NULL, 6866, '', '', 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 (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 (3007, 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 (3008, 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 (3009, 44, NULL, 6872, '97726773', 'Deworme 500mg tablets', NULL, '2.0000', '19.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '10.0000', '2022-09-13', 'received', '2.0000', '2.0000', '19.0000', NULL, NULL, 1, 'pc', '19.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 (3010, 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 (3011, 44, NULL, 5603, '200', 'Etisala Capsules', NULL, '4.4000', '119.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '523.6000', '119.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 (3012, 44, NULL, 6872, '97726773', 'Deworme 500mg tablets', NULL, '2.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '20.0000', '2022-09-13', 'received', '2.0000', '2.0000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3013, 44, NULL, 6224, '821', 'Letafen (Ibuprofen) Suspension 100ml', 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 (3014, 44, NULL, 6349, '946', 'Ronfit Cold Forte Syrup', NULL, '6.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.0000', '1.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 (3015, 44, NULL, 6876, '5402680', 'Alazole 400 Tablet', NULL, '0.9800', '100.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.0000', '100.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 (3016, 44, NULL, 6873, '06796716', 'Menazole 500mg 10x1 Ayrtons', NULL, '1.7600', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.4000', '40.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 (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 (3018, 44, NULL, 6191, '788', 'Shal\'Artem Dry Syrup', NULL, '5.5000', '102.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '561.0000', '102.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 (3017, 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 (3005, 44, NULL, 5730, '327', 'Lofnac Gel 30mg', NULL, '6.0000', '120.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '720.0000', '115.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 (3006, 44, NULL, 6202, '799', 'Starwin Milk of Magnesia 120ml', NULL, '9.5000', '420.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '3990.0000', '420.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 (3004, 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', '32.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 (3002, 44, NULL, 6825, '1422', 'Oxytetra Cap 250mg', NULL, '46.2800', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1388.4000', '30.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 (3003, 44, 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-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 (2998, 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', '47.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 (2999, 44, NULL, 6101, '698', 'Feroclear Syrup 200ml', NULL, '28.5000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '427.5000', '15.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 (3000, 44, NULL, 6220, '817', 'Dynewell Syrup 200ml', NULL, '5.0000', '40.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '200.0000', '23.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 (3001, 44, NULL, 6100, '697', 'Haem Up Syrup 200ml', NULL, '18.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '10.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 (2997, 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', '8.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 (2995, 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 (2996, 44, NULL, 6838, '1435', 'Maxmox 250mg (10x10)', NULL, '17.7100', '102.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1806.4200', '102.0000', '2022-09-13', 'received', '17.7100', '17.7100', '102.0000', NULL, NULL, 1, 'pc', '102.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 (2994, 44, NULL, 6767, '1364', 'Methylated Spirit 200ml ECL', NULL, '9.5000', '30.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '285.0000', '30.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 (2993, 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', '143.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 (2992, 44, NULL, 5476, '73', 'Borges Olive Oil 125ml', NULL, '13.3000', '32.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '425.6000', '6.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 (2991, 44, NULL, 5652, '249', 'Roberts Glycerine 90ml', NULL, '12.0000', '48.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '576.0000', '48.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 (2990, 44, NULL, 6096, '693', 'Mist Sennaco 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 (2986, 44, NULL, 6040, '637', 'Cold Naso', NULL, '3.0500', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.6000', '12.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 (2987, 44, NULL, 5651, '248', 'Glucose Powder 400mg', NULL, '6.1700', '12.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.0400', '12.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 (2988, 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', '15.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 (2989, 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', '30.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 (2985, 44, NULL, 6039, '636', 'Hot Naso- Ephedrine Nasal Drop', NULL, '4.5500', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.3000', '6.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 (2981, 44, NULL, 6685, '1282', 'Alu Hyd Tablets', NULL, '0.5000', '675.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '337.5000', '675.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 (2984, 44, NULL, 6031, '628', 'Blocold Tablet', NULL, '17.8200', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '178.2000', '10.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 (2983, 44, NULL, 6681, '1278', 'Goldy Malaria Suspension', NULL, '10.0000', '10.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '10.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 (2982, 44, NULL, 6875, '11896071', 'Mist Expect Sed rockmer', NULL, '3.0000', '4.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '4.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 (2977, 44, NULL, 6160, '757', 'Emigkof 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 (2978, 44, NULL, 6408, '1005', 'E-Panol 100ml Syrup Plain', NULL, '4.6700', '90.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '420.3000', '90.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 (2979, 44, NULL, 6130, '727', 'Kofof Family Syrup 150ml', NULL, '6.4000', '38.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '243.2000', '38.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 (2980, 44, NULL, 6396, '993', 'Menthodex 100ml Syrup', NULL, '13.5000', '15.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '202.5000', '15.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 (2973, 44, NULL, 5585, '182', 'Dragon Tablets', NULL, '23.4000', '60.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1404.0000', '58.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 (2974, 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 (2975, 44, NULL, 6008, '605', 'Linctus Junior Syr. 100ml', 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 (2976, 44, NULL, 5998, '595', 'Linctus Adult Cough syr. 100ml', NULL, '5.0000', '65.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '325.0000', '65.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 (2971, 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 (2972, 44, NULL, 6177, '774', 'Gogynax Tablets 100mg', NULL, '3.5000', '160.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '560.0000', '158.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 (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 (3019, 44, NULL, 5733, '330', 'Lubrimax Jelly 50g', NULL, '20.0000', '51.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '1020.0000', '47.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 (3020, 44, NULL, 5734, '331', 'Lubrimax Jelly 70g', NULL, '19.4000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '388.0000', '18.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 (3021, 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', '19.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 (3022, 45, NULL, 6851, '1448', 'Cotton 500g', NULL, '26.0000', '28.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '728.0000', '28.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', '81.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', '2304.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', '2051.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', '215.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', '80.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', '60.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', '240.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', '115.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', '540.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', '235.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', '146.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', '20.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', '132.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', '29.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', '25.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', '60.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', '20.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', '15.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', '90.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', '120.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', '40.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', '60.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', '108.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', '144.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', '24.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', '892.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', '395.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', '200.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', '25.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', '72.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', '26.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', '20.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', '1000.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', '720.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', '240.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', '120.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', '576.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', '60.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', '56.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', '177.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', '240.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', '23.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', '45.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', '60.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', '80.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', '40.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', '16.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', '50.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', '120.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', '210.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', '25.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', '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 (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', '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 (3080, 45, NULL, 6188, '785', 'Polygel Suspension 200ml', NULL, '7.0000', '80.0000', 1, '0.0000', NULL, '', NULL, '0.0000', NULL, '560.0000', '80.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', '900.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', '4747.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', '550.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', '285.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', '2800.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', '45.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', '30.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', '29.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', '100.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', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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', '400.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', '26.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', '30.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', '20.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', '20.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', '72.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', '72.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', '390.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', '450.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', '110.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', '60.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', '227.0000', '2022-09-13', 'received', '8.3200', '8.3200', '227.0000', NULL, NULL, 1, 'pc', '227.0000', NULL, NULL, NULL, NULL, '8.3200');


#
# 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=48 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, '', '35737.2300', '0.0000', '', '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '35737.2300', '0.0000', 'received', 'pending', 5, 5, '2022-09-13 13:53:34', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (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);


#
# 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=1388 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 (1339, 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);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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 (1340, 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);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1341, 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);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1342, 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);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1343, 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);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1344, 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);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1345, 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);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1346, 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);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1347, 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);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1348, 167, 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 (1349, 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);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1350, 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);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1351, 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);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1352, 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);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1353, 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);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1354, 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);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1355, 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);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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);


#
# 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=184 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:27', 'FMMS/POS0124', 98, 'Five Two', 3, 'FMMS MADINA WHOLESALE', 1, '', '', '807.2600', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '807.2600', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 80, 1, '807.2600', NULL, '0.0000', NULL, 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', '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, '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);


#
# 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 ('58caae004d09785ac0fcf912654d09352f8c7d63', '197.159.139.219', 1663150551, '__ci_last_regenerate|i:1663150551;identity|s:7:\"tabitha\";username|s:7:\"tabitha\";email|s:18:\"tabitha@fmmsgh.com\";user_id|s:1:\"7\";old_last_login|s:10:\"1663054602\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663150256;register_id|s:1:\"5\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-12 08:43:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbb4a0ed1e49e3567c48b81227159c279ddaf3ad', '197.159.139.219', 1663149061, '__ci_last_regenerate|i:1663149061;identity|s:7:\"tabitha\";username|s:7:\"tabitha\";email|s:18:\"tabitha@fmmsgh.com\";user_id|s:1:\"7\";old_last_login|s:10:\"1663054602\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663148982;register_id|s:1:\"5\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-12 08:43:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbef65d7031c7ff9fd236feda85b4475a01db28d', '197.159.139.219', 1663149452, '__ci_last_regenerate|i:1663149452;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:14:\"grace@fmms.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1663055516\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663149435;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('599e005e61e4ea1b44e7afeec8792bef4cd4e682', '197.159.139.219', 1663147203, '__ci_last_regenerate|i:1663147203;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:14:\"grace@fmms.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1663055516\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663146890;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57315e82bbc63bfdd3e4bccfb5b0382e1739fa69', '197.159.139.219', 1663147104, '__ci_last_regenerate|i:1663146713;identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:18:\"manager@fmmsgh.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663140605\";last_ip|s:14:\"102.176.65.149\";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\";requested_page|s:13:\"shop/products\";user_csrf|s:20:\"BKfS2Cxdr31mLYsTJXZh\";last_activity|i:1663146606;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('260d1a3bffb145bc80ab5e29306685b3d6292ba2', '197.159.139.219', 1663148118, '__ci_last_regenerate|i:1663148118;identity|s:7:\"tabitha\";username|s:7:\"tabitha\";email|s:18:\"tabitha@fmmsgh.com\";user_id|s:1:\"7\";old_last_login|s:10:\"1663054602\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663148088;register_id|s:1:\"5\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-12 08:43:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9e9d4faf8e32167488c6c8647621de340b983ae', '197.159.139.219', 1663076095, '__ci_last_regenerate|i:1663076095;identity|s:7:\"appiahs\";username|s:7:\"appiahs\";email|s:16:\"appiahs@fmms.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663020034\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"oqrfcw3VxunsSNlATyFm\";last_activity|i:1663075487;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-09 17:56:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5ace5ed65a04559ab86a45b0dc23477f07cfabb', '197.159.139.219', 1663076637, '__ci_last_regenerate|i:1663076637;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:14:\"grace@fmms.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1662999344\";last_ip|s:13:\"154.160.22.87\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663076026;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 ('553347a292bf405e5b4eaef8e4b157c5ebc1872c', '197.159.139.219', 1663076934, '__ci_last_regenerate|i:1663076934;identity|s:7:\"appiahs\";username|s:7:\"appiahs\";email|s:16:\"appiahs@fmms.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663020034\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"sag5Aq8H3lG4kFDxJQyw\";last_activity|i:1663076358;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-09 17:56:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e92b48d7b6f6418715db3cc76d9313a6a4145c7', '197.159.139.219', 1663085516, '__ci_last_regenerate|i:1663085516;identity|s:7:\"appiahs\";username|s:7:\"appiahs\";email|s:16:\"appiahs@fmms.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663020034\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"qa1rfFt35SmxRQBwTKZ2\";last_activity|i:1663076358;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-09 17:56:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('481f04aa376e93a3c8b57c41c2cfd587178deec9', '197.159.139.219', 1663086380, '__ci_last_regenerate|i:1663086380;identity|s:7:\"tabitha\";username|s:7:\"tabitha\";email|s:18:\"tabitha@fmmsgh.com\";user_id|s:1:\"7\";old_last_login|s:10:\"1662997645\";last_ip|s:13:\"154.160.1.238\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663086193;register_id|s:1:\"5\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-12 08:43:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e1ed0c6fa32917741b5ffcc117c59609b60df9c', '197.159.139.219', 1663085833, '__ci_last_regenerate|i:1663085833;identity|s:7:\"appiahs\";username|s:7:\"appiahs\";email|s:16:\"appiahs@fmms.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663020034\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"qa1rfFt35SmxRQBwTKZ2\";last_activity|i:1663076358;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-09 17:56:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40dff532fdd92cff2e36c2068e25f3bf0413de46', '197.159.139.219', 1663086285, '__ci_last_regenerate|i:1663086285;identity|s:7:\"appiahs\";username|s:7:\"appiahs\";email|s:16:\"appiahs@fmms.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663020034\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"qa1rfFt35SmxRQBwTKZ2\";last_activity|i:1663076358;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-09 17:56:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08ab611e587c446651e11e4d0c56ba066bf09e08', '197.159.139.219', 1663086678, '__ci_last_regenerate|i:1663086678;identity|s:7:\"appiahs\";username|s:7:\"appiahs\";email|s:16:\"appiahs@fmms.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663020034\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"qa1rfFt35SmxRQBwTKZ2\";last_activity|i:1663076358;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-09 17:56:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8c64390d42c1541a652882b59909e1324f817c2', '197.159.139.219', 1663086992, '__ci_last_regenerate|i:1663086992;identity|s:7:\"tabitha\";username|s:7:\"tabitha\";email|s:18:\"tabitha@fmmsgh.com\";user_id|s:1:\"7\";old_last_login|s:10:\"1662997645\";last_ip|s:13:\"154.160.1.238\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663086408;register_id|s:1:\"5\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-12 08:43:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57191f5dfc2a196f8e479cd62ce0b751d783b8c8', '197.159.139.219', 1663089098, '__ci_last_regenerate|i:1663089098;identity|s:7:\"appiahs\";username|s:7:\"appiahs\";email|s:16:\"appiahs@fmms.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663020034\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"VJYdRzFIWoDs0iCXrG5y\";last_activity|i:1663076358;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-09 17:56:00\";remove_pols|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2df8947d0949b718a1d3c69f3e146c8cf1b0a13a', '197.159.139.219', 1663087298, '__ci_last_regenerate|i:1663087298;identity|s:7:\"tabitha\";username|s:7:\"tabitha\";email|s:18:\"tabitha@fmmsgh.com\";user_id|s:1:\"7\";old_last_login|s:10:\"1662997645\";last_ip|s:13:\"154.160.1.238\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663087275;register_id|s:1:\"5\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-12 08:43:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de77e529388cc7d0f757ab2a542a819ac8c7bb0c', '197.159.139.219', 1663085212, '__ci_last_regenerate|i:1663085212;identity|s:7:\"appiahs\";username|s:7:\"appiahs\";email|s:16:\"appiahs@fmms.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663020034\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"qa1rfFt35SmxRQBwTKZ2\";last_activity|i:1663076358;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-09 17:56:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('685f51f71db0625055849fa2e3cd89372afc49a8', '197.159.139.219', 1663084480, '__ci_last_regenerate|i:1663084480;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:14:\"grace@fmms.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1662999344\";last_ip|s:13:\"154.160.22.87\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663084327;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f78e85787ad1aa6f5a303517b566b82d58416e74', '197.159.139.219', 1663087151, '__ci_last_regenerate|i:1663087151;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:14:\"grace@fmms.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1662999344\";last_ip|s:13:\"154.160.22.87\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663084481;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2767185244b77caec86ba1e59e430c84b55a93f1', '197.159.139.219', 1663076179, '__ci_last_regenerate|i:1663076179;identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:18:\"manager@fmmsgh.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663057000\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"ZJsQPD62oF9vACHEaxk7\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e693c7585baa0a61f697c245afd453ce6ac48efa', '197.159.139.219', 1663084121, '__ci_last_regenerate|i:1663084121;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:14:\"grace@fmms.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1662999344\";last_ip|s:13:\"154.160.22.87\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663084018;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4206a723993eec6c6bfb7cd93e6e45369021c072', '197.159.139.219', 1663087415, '__ci_last_regenerate|i:1663087415;identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:18:\"manager@fmmsgh.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663057000\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"Gxb8hc3yijF4Amf7W5YK\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df6034d2783f2bfb27c549851e2f382bb55fdcbc', '197.159.139.219', 1663084804, '__ci_last_regenerate|i:1663084804;identity|s:7:\"appiahs\";username|s:7:\"appiahs\";email|s:16:\"appiahs@fmms.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663020034\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"qa1rfFt35SmxRQBwTKZ2\";last_activity|i:1663076358;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-09 17:56:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7aa295ae227ff50f864bd005e08bfe232a4ac7e5', '197.159.139.219', 1663083819, '__ci_last_regenerate|i:1663083819;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:14:\"grace@fmms.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1662999344\";last_ip|s:13:\"154.160.22.87\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663083326;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a129111ed66af12c291557737335e5a23f3e6a6', '197.159.139.219', 1663083325, '__ci_last_regenerate|i:1663083325;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:14:\"grace@fmms.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1662999344\";last_ip|s:13:\"154.160.22.87\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663083151;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4348dde850bf1b4a9174266f500d5ff9790df8b6', '197.159.139.219', 1663085235, '__ci_last_regenerate|i:1663085235;identity|s:7:\"tabitha\";username|s:7:\"tabitha\";email|s:18:\"tabitha@fmmsgh.com\";user_id|s:1:\"7\";old_last_login|s:10:\"1662997645\";last_ip|s:13:\"154.160.1.238\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663083084;register_id|s:1:\"5\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-12 08:43:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ee95343a4677c6d2d58b0e5e774c9833aa72eaf', '197.159.139.219', 1663083120, '__ci_last_regenerate|i:1663083120;identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:18:\"manager@fmmsgh.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663057000\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"Gxb8hc3yijF4Amf7W5YK\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a96d4c152ee19021c3db9223d0c6f2591a409a7', '197.159.139.219', 1663083292, '__ci_last_regenerate|i:1663083292;identity|s:7:\"appiahs\";username|s:7:\"appiahs\";email|s:16:\"appiahs@fmms.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663020034\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"qa1rfFt35SmxRQBwTKZ2\";last_activity|i:1663076358;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-09 17:56:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc6d0814ea9a4ae8e7abbb1561fe17b5b0f99a37', '197.159.139.219', 1663146713, '__ci_last_regenerate|i:1663146713;identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:18:\"manager@fmmsgh.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663140605\";last_ip|s:14:\"102.176.65.149\";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\";requested_page|s:13:\"shop/products\";user_csrf|s:20:\"BKfS2Cxdr31mLYsTJXZh\";last_activity|i:1663146606;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5654651d6f46eaaf3e8b7f2382695b26dbb8c5c', '197.159.139.219', 1663146584, '__ci_last_regenerate|i:1663146584;identity|s:7:\"tabitha\";username|s:7:\"tabitha\";email|s:18:\"tabitha@fmmsgh.com\";user_id|s:1:\"7\";old_last_login|s:10:\"1663054602\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663146564;register_id|s:1:\"5\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-12 08:43:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cadaf4924fa0626c2c561a31906bf8ea2d1fcae1', '197.159.139.219', 1663146228, '__ci_last_regenerate|i:1663146228;identity|s:7:\"tabitha\";username|s:7:\"tabitha\";email|s:18:\"tabitha@fmmsgh.com\";user_id|s:1:\"7\";old_last_login|s:10:\"1663054602\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663145953;register_id|s:1:\"5\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-12 08:43:10\";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 ('9b9e945e880504827f3f81a990944ca8ec1b0f0c', '197.159.139.219', 1663146860, '__ci_last_regenerate|i:1663146860;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:14:\"grace@fmms.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1663055516\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663146601;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cc9b068ed6906e99a335e6be1d95a45706f3856', '197.159.139.219', 1663145768, '__ci_last_regenerate|i:1663145768;identity|s:7:\"tabitha\";username|s:7:\"tabitha\";email|s:18:\"tabitha@fmmsgh.com\";user_id|s:1:\"7\";old_last_login|s:10:\"1663054602\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663145377;register_id|s:1:\"5\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-12 08:43:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcf6071114a09c96f929780c0cbdca1a28912429', '197.159.139.219', 1663145630, '__ci_last_regenerate|i:1663145630;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:14:\"grace@fmms.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1663055516\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663145313;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c32f669850ff528cc53a0eee05d0e981a763133', '197.159.139.219', 1663145370, '__ci_last_regenerate|i:1663145370;identity|s:7:\"tabitha\";username|s:7:\"tabitha\";email|s:18:\"tabitha@fmmsgh.com\";user_id|s:1:\"7\";old_last_login|s:10:\"1663054602\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663145340;register_id|s:1:\"5\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-12 08:43:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d372f8dcfb34e10ad699ce6747933cb66b6ea14', '197.159.139.219', 1663145313, '__ci_last_regenerate|i:1663145313;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:14:\"grace@fmms.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1663055516\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663145170;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b68f94ad459828934119a2d53dd4adf26faff553', '197.159.139.219', 1663144803, '__ci_last_regenerate|i:1663144803;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:14:\"grace@fmms.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1663055516\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663143086;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0200826ae0bd6bb9f8aa03d7b4d4ff4d4a2b2097', '197.159.139.219', 1663078907, '__ci_last_regenerate|i:1663078907;identity|s:7:\"appiahs\";username|s:7:\"appiahs\";email|s:16:\"appiahs@fmms.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663020034\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"TBynHXz8pJWclL5E1hP0\";last_activity|i:1663076358;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-09 17:56:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efcc7f898305d8ddf424bfc2f669f2267dde9fe2', '197.159.139.219', 1663078674, '__ci_last_regenerate|i:1663078674;identity|s:7:\"tabitha\";username|s:7:\"tabitha\";email|s:18:\"tabitha@fmmsgh.com\";user_id|s:1:\"7\";old_last_login|s:10:\"1662997645\";last_ip|s:13:\"154.160.1.238\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663078621;register_id|s:1:\"5\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-12 08:43:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d157b74c32d3701fa8b10bd55cdf8b3ee99005d6', '197.159.139.219', 1663078757, '__ci_last_regenerate|i:1663078757;identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:18:\"manager@fmmsgh.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663057000\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"Gxb8hc3yijF4Amf7W5YK\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf2a776096e53de90661a51fa4c233ca2acf1c54', '197.159.139.219', 1663079100, '__ci_last_regenerate|i:1663079100;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:14:\"grace@fmms.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1662999344\";last_ip|s:13:\"154.160.22.87\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663078821;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 ('e1493a406c4d0cfc7467f567faa68896e02af852', '197.159.139.219', 1663079870, '__ci_last_regenerate|i:1663079870;identity|s:7:\"tabitha\";username|s:7:\"tabitha\";email|s:18:\"tabitha@fmmsgh.com\";user_id|s:1:\"7\";old_last_login|s:10:\"1662997645\";last_ip|s:13:\"154.160.1.238\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663079080;register_id|s:1:\"5\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-12 08:43:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2442a7f5e64837269ef1e2a374cb306b8f8174d8', '197.159.139.219', 1663081690, '__ci_last_regenerate|i:1663081690;identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:18:\"manager@fmmsgh.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663057000\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"Gxb8hc3yijF4Amf7W5YK\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf8c7094ffed90fa336fd19fec543bafc2ffdcfe', '197.159.139.219', 1663079663, '__ci_last_regenerate|i:1663079663;identity|s:7:\"appiahs\";username|s:7:\"appiahs\";email|s:16:\"appiahs@fmms.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663020034\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"NojqfmYUVt6l13vWgCOT\";last_activity|i:1663076358;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-09 17:56:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14d1d310f4584807b3bc62a98d2ebf8218b39ad4', '197.159.139.219', 1663079405, '__ci_last_regenerate|i:1663079405;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:14:\"grace@fmms.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1662999344\";last_ip|s:13:\"154.160.22.87\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663079186;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 ('7ac781a0b72842ee8bf9c90a026aa42f11aacded', '197.159.139.219', 1663079782, '__ci_last_regenerate|i:1663079782;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:14:\"grace@fmms.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1662999344\";last_ip|s:13:\"154.160.22.87\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663079666;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 ('45c8b049b092c21e878783e3b80152f84fc68f6b', '197.159.139.219', 1663079965, '__ci_last_regenerate|i:1663079965;identity|s:7:\"appiahs\";username|s:7:\"appiahs\";email|s:16:\"appiahs@fmms.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663020034\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"PRAToymW5X2IF6wMslda\";last_activity|i:1663076358;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-09 17:56:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3bccffe2daf743a9adb73fecb3ceb0191b941de', '197.159.139.219', 1663081707, '__ci_last_regenerate|i:1663081707;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:14:\"grace@fmms.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1662999344\";last_ip|s:13:\"154.160.22.87\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663080012;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57a50dfdf522ae54ef8197ddda548bd39f2e534b', '197.159.139.219', 1663080190, '__ci_last_regenerate|i:1663080190;identity|s:7:\"tabitha\";username|s:7:\"tabitha\";email|s:18:\"tabitha@fmmsgh.com\";user_id|s:1:\"7\";old_last_login|s:10:\"1662997645\";last_ip|s:13:\"154.160.1.238\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663079942;register_id|s:1:\"5\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-12 08:43:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('850b10e403e64a836157f873d573ff304afbd45d', '197.159.139.219', 1663080402, '__ci_last_regenerate|i:1663080402;identity|s:7:\"appiahs\";username|s:7:\"appiahs\";email|s:16:\"appiahs@fmms.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663020034\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"AGCrEb8U4wcYivudhMjN\";last_activity|i:1663076358;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-09 17:56:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21dba0ce250bf9fcbff5e0193d763541a6637386', '197.159.139.219', 1663082148, '__ci_last_regenerate|i:1663082148;identity|s:7:\"tabitha\";username|s:7:\"tabitha\";email|s:18:\"tabitha@fmmsgh.com\";user_id|s:1:\"7\";old_last_login|s:10:\"1662997645\";last_ip|s:13:\"154.160.1.238\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663082053;register_id|s:1:\"5\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-12 08:43:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1db5d6bca9e1160bed928af7232de07c52edff9', '197.159.139.219', 1663080799, '__ci_last_regenerate|i:1663080799;identity|s:7:\"appiahs\";username|s:7:\"appiahs\";email|s:16:\"appiahs@fmms.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663020034\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"AGCrEb8U4wcYivudhMjN\";last_activity|i:1663076358;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-09 17:56:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23382e6666d4bb4e0c310eadc6a52e65a9c06593', '197.159.139.219', 1663081337, '__ci_last_regenerate|i:1663081337;identity|s:7:\"appiahs\";username|s:7:\"appiahs\";email|s:16:\"appiahs@fmms.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663020034\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"1vnyf9CcOkAaBd5lVpqx\";last_activity|i:1663076358;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-09 17:56:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cc2463f9515a2c554732fe27e37178bb1325c38', '197.159.139.219', 1663087602, '__ci_last_regenerate|i:1663087602;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:14:\"grace@fmms.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1662999344\";last_ip|s:13:\"154.160.22.87\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663087217;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03743e937b370f4d2e3951fddf25edbe5535f2a4', '197.159.139.219', 1663090976, '__ci_last_regenerate|i:1663090976;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:14:\"grace@fmms.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1662999344\";last_ip|s:13:\"154.160.22.87\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663087608;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3352d4ba17833bf8408138cb1808dfa3efe9cdb', '197.159.139.219', 1663090606, '__ci_last_regenerate|i:1663090606;identity|s:7:\"tabitha\";username|s:7:\"tabitha\";email|s:18:\"tabitha@fmmsgh.com\";user_id|s:1:\"7\";old_last_login|s:10:\"1662997645\";last_ip|s:13:\"154.160.1.238\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663087275;register_id|s:1:\"5\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-12 08:43:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0a5891793d1bd9e86bbc54210685c306a26e2a2', '197.159.139.219', 1663087743, '__ci_last_regenerate|i:1663087743;identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:18:\"manager@fmmsgh.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663057000\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"Gxb8hc3yijF4Amf7W5YK\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0266868724669afcba63d0308caaccbe2f0bdc1', '197.159.139.219', 1663088472, '__ci_last_regenerate|i:1663088472;identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:18:\"manager@fmmsgh.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663057000\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"Gxb8hc3yijF4Amf7W5YK\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f99604be9756f234cc1d77685f6a478bf6d99aa', '197.159.139.219', 1663089058, '__ci_last_regenerate|i:1663089058;identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:18:\"manager@fmmsgh.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663057000\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"Gxb8hc3yijF4Amf7W5YK\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('008186c1c9d14596561b0bff05c1c3e8c563298f', '197.159.139.219', 1663089484, '__ci_last_regenerate|i:1663089484;identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:18:\"manager@fmmsgh.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663057000\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"Gxb8hc3yijF4Amf7W5YK\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('717fe820ccfbb37f22a8e81e99ba65a6b2d68997', '197.159.139.219', 1663089911, '__ci_last_regenerate|i:1663089911;identity|s:7:\"appiahs\";username|s:7:\"appiahs\";email|s:16:\"appiahs@fmms.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663020034\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"ueWYdoQRyPmnIfjVbCF2\";last_activity|i:1663076358;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-09 17:56:00\";remove_pols|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74b1c109f3a3fdc609643a0f1ed1aed86506f1a4', '197.159.139.219', 1663090206, '__ci_last_regenerate|i:1663090206;identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:18:\"manager@fmmsgh.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663057000\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"JM9xsOmj3ZeNfF5BHGIn\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e0e4c559bf3578af050d94773fc5d86bfc73465', '197.159.139.219', 1663090128, '__ci_last_regenerate|i:1663090128;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42bc8c53600308e3f4b005739db95de76b16d2c9', '197.159.139.219', 1663090533, '__ci_last_regenerate|i:1663090206;identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:18:\"manager@fmmsgh.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663057000\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"JM9xsOmj3ZeNfF5BHGIn\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5808f252cc5cbfe56d34f15e969bc1343d5e6bfe', '197.159.139.219', 1663090613, '__ci_last_regenerate|i:1663090613;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44d8537cf98055583856d84263268a5f9b67a168', '197.159.139.219', 1663090976, '__ci_last_regenerate|i:1663090976;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff763a5e75b3d19905c88c9ece3ed1f2832d751c', '102.176.65.124', 1663097784, '__ci_last_regenerate|i:1663097784;identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:18:\"manager@fmmsgh.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663068052\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663097730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('223f4a8f0ba2aad43d6d7efa648b07877eb50ff0', '102.176.65.124', 1663104391, '__ci_last_regenerate|i:1663104391;identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:18:\"manager@fmmsgh.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663068052\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663097730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25c8972bacd10c63bdda68803d98c3d808e937dd', '102.176.65.253', 1663104400, '__ci_last_regenerate|i:1663104391;identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:18:\"manager@fmmsgh.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663068052\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663097730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecb9b14c070db3887a476c8ecc78d8ad97bda2a1', '102.176.65.149', 1663140939, '__ci_last_regenerate|i:1663140939;requested_page|s:35:\"admin/products/quantity_adjustments\";identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:18:\"manager@fmmsgh.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663097471\";last_ip|s:14:\"102.176.65.124\";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 ('e6fc5442b69eb0c2f99ed6ee8dc0745b5094ff03', '102.176.65.149', 1663140896, '__ci_last_regenerate|i:1663140896;identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:18:\"manager@fmmsgh.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663140250\";last_ip|s:14:\"102.176.65.149\";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 ('20b0d6b1607504c76a8a24cd04d84a16c75319d7', '197.159.139.219', 1663141387, '__ci_last_regenerate|i:1663141387;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:14:\"grace@fmms.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1663055516\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e55c3fc3bb6ca4f54151e0785ece0f9aa488fb06', '102.176.65.149', 1663141329, '__ci_last_regenerate|i:1663141329;identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:18:\"manager@fmmsgh.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663140250\";last_ip|s:14:\"102.176.65.149\";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 ('fcdd0efa86480fb2174a273a94b686efde08032e', '102.176.65.149', 1663141378, '__ci_last_regenerate|i:1663141378;requested_page|s:35:\"admin/products/quantity_adjustments\";identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:18:\"manager@fmmsgh.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663097471\";last_ip|s:14:\"102.176.65.124\";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 ('32b2dd9640b8a6c2f2b22a142175f8a285161502', '102.176.65.149', 1663141362, '__ci_last_regenerate|i:1663141329;identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:18:\"manager@fmmsgh.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663140250\";last_ip|s:14:\"102.176.65.149\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e39e42ab8775b2d1c0224567d71d8efde108a44e', '102.176.65.149', 1663142209, '__ci_last_regenerate|i:1663142209;requested_page|s:35:\"admin/products/quantity_adjustments\";identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:18:\"manager@fmmsgh.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663097471\";last_ip|s:14:\"102.176.65.124\";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 ('21c8f2f4372989922c9ddfec6440b5fde790e157', '197.159.139.219', 1663142205, '__ci_last_regenerate|i:1663142205;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:14:\"grace@fmms.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1663055516\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663141964;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df385caf9beff474b2a6f273f3f172cf6814b6bf', '197.159.139.219', 1663141951, '__ci_last_regenerate|i:1663141951;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5863ddf2371e67f46b407243ba852733ba904b32', '197.159.139.219', 1663141954, '__ci_last_regenerate|i:1663141954;error|s:152:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>https://fmmsgh.com/wholesale01/themes/default/shop/assets/css/styles.min.css\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57d06502c205faec208fe1c0260d5a737bbe16ad', '197.159.139.219', 1663141955, '__ci_last_regenerate|i:1663141955;error|s:152:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>https://fmmsgh.com/wholesale01/themes/default/shop/assets/css/styles.min.css\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3dd0689e188533386f4795537ecd64da5bb0227e', '197.159.139.219', 1663142319, '__ci_last_regenerate|i:1663142319;identity|s:7:\"tabitha\";username|s:7:\"tabitha\";email|s:18:\"tabitha@fmmsgh.com\";user_id|s:1:\"7\";old_last_login|s:10:\"1663054602\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663142170;register_id|s:1:\"5\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-12 08:43:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2933d66b8ead49757827ecf01d138f6e062ffdca', '197.159.139.219', 1663142622, '__ci_last_regenerate|i:1663142622;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:14:\"grace@fmms.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1663055516\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663142263;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a6656f31318f795e35beb87995d3f51632c9bb9', '102.176.65.68', 1663143431, '__ci_last_regenerate|i:1663143431;requested_page|s:35:\"admin/products/quantity_adjustments\";identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:18:\"manager@fmmsgh.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663097471\";last_ip|s:14:\"102.176.65.124\";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 ('8111c14aca129791be55b4cd67281a6521b910fd', '197.159.139.219', 1663143536, '__ci_last_regenerate|i:1663143536;identity|s:7:\"tabitha\";username|s:7:\"tabitha\";email|s:18:\"tabitha@fmmsgh.com\";user_id|s:1:\"7\";old_last_login|s:10:\"1663054602\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663142340;register_id|s:1:\"5\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-12 08:43:10\";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 ('b0a2b9b469b093601dde90774916d9defb686dd9', '197.159.139.219', 1663142923, '__ci_last_regenerate|i:1663142923;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:14:\"grace@fmms.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1663055516\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663142897;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 ('9675b8aa30d4fd0a53208f0390b373a973c6be6c', '197.159.139.219', 1663143408, '__ci_last_regenerate|i:1663143408;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:14:\"grace@fmms.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1663055516\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663143086;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff9969c07fbebd174ce05192e8f9dca220ec3ac3', '197.159.139.219', 1663143799, '__ci_last_regenerate|i:1663143799;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:14:\"grace@fmms.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1663055516\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663143086;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21f2bf3d949060033ee28840211b7344e79d0a4b', '102.176.65.75', 1663143437, '__ci_last_regenerate|i:1663143431;requested_page|s:35:\"admin/products/quantity_adjustments\";identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:18:\"manager@fmmsgh.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663097471\";last_ip|s:14:\"102.176.65.124\";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 ('bcb54d5a201261b8d1be831599c56033e27f2cde', '197.159.139.219', 1663145067, '__ci_last_regenerate|i:1663145067;identity|s:7:\"tabitha\";username|s:7:\"tabitha\";email|s:18:\"tabitha@fmmsgh.com\";user_id|s:1:\"7\";old_last_login|s:10:\"1663054602\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663145032;register_id|s:1:\"5\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-12 08:43:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2dc9d5b99cec0587878e239176df2bdf0a194534', '197.159.139.219', 1663082517, '__ci_last_regenerate|i:1663082517;identity|s:7:\"tabitha\";username|s:7:\"tabitha\";email|s:18:\"tabitha@fmmsgh.com\";user_id|s:1:\"7\";old_last_login|s:10:\"1662997645\";last_ip|s:13:\"154.160.1.238\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663082451;register_id|s:1:\"5\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-12 08:43:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('815099d41e855e4405cbc956f94e0a6bb19a6e80', '197.159.139.219', 1663082675, '__ci_last_regenerate|i:1663082675;identity|s:7:\"appiahs\";username|s:7:\"appiahs\";email|s:16:\"appiahs@fmms.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663020034\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"qa1rfFt35SmxRQBwTKZ2\";last_activity|i:1663076358;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-09 17:56:00\";remove_pols|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44c56192e90544f639fdac4882452dee3e6eae1c', '197.159.139.219', 1663083050, '__ci_last_regenerate|i:1663083050;identity|s:7:\"tabitha\";username|s:7:\"tabitha\";email|s:18:\"tabitha@fmmsgh.com\";user_id|s:1:\"7\";old_last_login|s:10:\"1662997645\";last_ip|s:13:\"154.160.1.238\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663082887;register_id|s:1:\"5\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-12 08:43:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1777b307b1c86217f4d3463ff9c54134900da106', '197.159.139.219', 1663082986, '__ci_last_regenerate|i:1663082986;identity|s:7:\"appiahs\";username|s:7:\"appiahs\";email|s:16:\"appiahs@fmms.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663020034\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"qa1rfFt35SmxRQBwTKZ2\";last_activity|i:1663076358;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-09 17:56:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de9a157ba9cd3e8e86c683e335440c27a89228e1', '197.159.139.219', 1663082308, '__ci_last_regenerate|i:1663082308;identity|s:7:\"appiahs\";username|s:7:\"appiahs\";email|s:16:\"appiahs@fmms.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663020034\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"pPm92aGs06b8YThXlRS3\";last_activity|i:1663076358;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-09 17:56:00\";remove_pols|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a882e8811d2349c0a1e6b87cb8c4f743ec145ef0', '197.159.139.219', 1663081819, '__ci_last_regenerate|i:1663081819;identity|s:7:\"appiahs\";username|s:7:\"appiahs\";email|s:16:\"appiahs@fmms.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663020034\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"NTb73irBWmIVMExwkZPe\";last_activity|i:1663076358;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-09 17:56:00\";remove_pols|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c5566350d8b790bce0417961f8059712d61266b', '197.159.139.219', 1663074859, '__ci_last_regenerate|i:1663074859;identity|s:7:\"appiahs\";username|s:7:\"appiahs\";email|s:16:\"appiahs@fmms.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663020034\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"ozM5DPAUxb0FcXfLRvHE\";last_activity|i:1663072550;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-09 17:56:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba969f4813246464564c68107db5f7b2c0d08516', '197.159.139.219', 1663082781, '__ci_last_regenerate|i:1663082781;identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:18:\"manager@fmmsgh.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663057000\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"Gxb8hc3yijF4Amf7W5YK\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e10e9cc3cf860e33b353be843e9d5da8d2d56714', '197.159.139.219', 1663083022, '__ci_last_regenerate|i:1663083022;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:14:\"grace@fmms.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1662999344\";last_ip|s:13:\"154.160.22.87\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663082837;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc72831af51a7222cb9147b7405622d83c152741', '197.159.139.219', 1663074818, '__ci_last_regenerate|i:1663074818;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:14:\"grace@fmms.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1662999344\";last_ip|s:13:\"154.160.22.87\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663074587;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";remove_posls|i:1;remove_slls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f946f00013f89af3b4fd41711b9d1b61949c71e', '197.159.139.219', 1663075188, '__ci_last_regenerate|i:1663075188;identity|s:7:\"tabitha\";username|s:7:\"tabitha\";email|s:18:\"tabitha@fmmsgh.com\";user_id|s:1:\"7\";old_last_login|s:10:\"1662997645\";last_ip|s:13:\"154.160.1.238\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663075108;register_id|s:1:\"5\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-12 08:43:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('859e722e7e3eea8a3c16c9345c3c44d261602617', '197.159.139.219', 1663150898, '__ci_last_regenerate|i:1663150898;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:14:\"grace@fmms.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1663055516\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663149683;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bd22cc8a284162b71aea225a5ac8d896d69d788', '197.159.139.219', 1663151414, '__ci_last_regenerate|i:1663151414;identity|s:7:\"tabitha\";username|s:7:\"tabitha\";email|s:18:\"tabitha@fmmsgh.com\";user_id|s:1:\"7\";old_last_login|s:10:\"1663054602\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663150752;register_id|s:1:\"5\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-12 08:43:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('999f9ba1e441f69b47ef6e4707622f639bca5866', '197.159.139.219', 1663151714, '__ci_last_regenerate|i:1663151714;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:14:\"grace@fmms.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1663055516\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663151145;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf09dd5b0711f00c242ff39a6235c0937655f7ce', '197.159.139.219', 1663152485, '__ci_last_regenerate|i:1663152485;identity|s:7:\"tabitha\";username|s:7:\"tabitha\";email|s:18:\"tabitha@fmmsgh.com\";user_id|s:1:\"7\";old_last_login|s:10:\"1663054602\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663151950;register_id|s:1:\"5\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-12 08:43:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89ae2c72be3620e06b276055800e9cf244ab944e', '102.176.65.66', 1663151834, '__ci_last_regenerate|i:1663151584;identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:18:\"manager@fmmsgh.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663146396\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a00269fc7d75a125ce4fcff4f994a693ae594e9', '197.159.139.219', 1663152775, '__ci_last_regenerate|i:1663152775;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:14:\"grace@fmms.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1663055516\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663151145;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d1869254ce4894909445f5d13562c23ce38ce24', '197.159.139.219', 1663152914, '__ci_last_regenerate|i:1663152914;identity|s:7:\"tabitha\";username|s:7:\"tabitha\";email|s:18:\"tabitha@fmmsgh.com\";user_id|s:1:\"7\";old_last_login|s:10:\"1663054602\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663152888;register_id|s:1:\"5\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-12 08:43:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bb38b97917a5e640b091e54171b8d000fd45797', '102.176.65.39', 1663153818, '__ci_last_regenerate|i:1663153818;requested_page|s:5:\"admin\";identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:18:\"manager@fmmsgh.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663151603\";last_ip|s:13:\"102.176.65.66\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36e3ab7cfb718644b7165b06f6f761f012276635', '197.159.139.219', 1663153619, '__ci_last_regenerate|i:1663153619;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:14:\"grace@fmms.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1663055516\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663153413;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c6f0ba828fae3317fff98d0e051feca811c7c82', '197.159.139.219', 1663153478, '__ci_last_regenerate|i:1663153478;identity|s:7:\"tabitha\";username|s:7:\"tabitha\";email|s:18:\"tabitha@fmmsgh.com\";user_id|s:1:\"7\";old_last_login|s:10:\"1663054602\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663152914;register_id|s:1:\"5\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-12 08:43:10\";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 ('ae21d3b5a42e1d37687f92ce64a6aa697aae4e26', '197.159.139.219', 1663153797, '__ci_last_regenerate|i:1663153797;identity|s:7:\"tabitha\";username|s:7:\"tabitha\";email|s:18:\"tabitha@fmmsgh.com\";user_id|s:1:\"7\";old_last_login|s:10:\"1663054602\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663153758;register_id|s:1:\"5\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-12 08:43:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f255ea477004c80df9b398f7dd7ae29680a68749', '197.159.139.219', 1663154089, '__ci_last_regenerate|i:1663154089;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:14:\"grace@fmms.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1663055516\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663153822;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cc8fff8791d404aec8690c7d377465b4d1e7f6b', '197.159.139.219', 1663153813, '__ci_last_regenerate|i:1663153797;identity|s:7:\"tabitha\";username|s:7:\"tabitha\";email|s:18:\"tabitha@fmmsgh.com\";user_id|s:1:\"7\";old_last_login|s:10:\"1663054602\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663153812;register_id|s:1:\"5\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-12 08:43:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b50171acb30db0f1c27e1db525f5975d337b95d4', '102.176.65.21', 1663154324, '__ci_last_regenerate|i:1663154324;requested_page|s:5:\"admin\";identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:18:\"manager@fmmsgh.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663151603\";last_ip|s:13:\"102.176.65.66\";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 ('83a6fbd36b16fc098712a1d13620a95ce04c2986', '197.159.139.219', 1663154090, '__ci_last_regenerate|i:1663154089;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:14:\"grace@fmms.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1663055516\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663154090;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7b61fb9212fb6d946df91d23f4a5e016a82c7a3', '102.176.65.21', 1663154370, '__ci_last_regenerate|i:1663154324;requested_page|s:5:\"admin\";identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:18:\"manager@fmmsgh.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663151603\";last_ip|s:13:\"102.176.65.66\";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 ('c72374609b1e49f5ddf5269ea1f8cb80461836ad', '197.159.139.219', 1663078238, '__ci_last_regenerate|i:1663078238;identity|s:7:\"tabitha\";username|s:7:\"tabitha\";email|s:18:\"tabitha@fmmsgh.com\";user_id|s:1:\"7\";old_last_login|s:10:\"1662997645\";last_ip|s:13:\"154.160.1.238\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663078163;register_id|s:1:\"5\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-12 08:43:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('103dd81cc9493fc2bdd0cec7c4c89b592d101389', '197.159.139.219', 1663077890, '__ci_last_regenerate|i:1663077890;identity|s:7:\"tabitha\";username|s:7:\"tabitha\";email|s:18:\"tabitha@fmmsgh.com\";user_id|s:1:\"7\";old_last_login|s:10:\"1662997645\";last_ip|s:13:\"154.160.1.238\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663077704;register_id|s:1:\"5\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-12 08:43:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cde72772e9ded1c1e497d6a5f64d5f1a1fbd4571', '197.159.139.219', 1663077266, '__ci_last_regenerate|i:1663077266;identity|s:7:\"appiahs\";username|s:7:\"appiahs\";email|s:16:\"appiahs@fmms.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663020034\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"TBynHXz8pJWclL5E1hP0\";last_activity|i:1663076358;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-09 17:56:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('200d65f6b47d7c7d86e11045574173d830522d2e', '197.159.139.219', 1663078664, '__ci_last_regenerate|i:1663078664;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:14:\"grace@fmms.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1662999344\";last_ip|s:13:\"154.160.22.87\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663077066;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 ('4f6a7e1c4351873f7b21108f8d283be1f46dd401', '197.159.139.219', 1663077896, '__ci_last_regenerate|i:1663077896;identity|s:7:\"appiahs\";username|s:7:\"appiahs\";email|s:16:\"appiahs@fmms.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663020034\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"TBynHXz8pJWclL5E1hP0\";last_activity|i:1663076358;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-09 17:56:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a0646fff3222be771d39d995c4b06fccb7987a3', '197.159.139.219', 1663077065, '__ci_last_regenerate|i:1663077065;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:14:\"grace@fmms.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1662999344\";last_ip|s:13:\"154.160.22.87\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663076026;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 ('5b0e2baf78f047c26e0cd64bc07870fb5527dbb5', '197.159.139.219', 1663078323, '__ci_last_regenerate|i:1663078323;identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:18:\"manager@fmmsgh.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663057000\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"Gxb8hc3yijF4Amf7W5YK\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99fa7b95f940847640197737811d0e13386a4c27', '197.159.139.219', 1663077576, '__ci_last_regenerate|i:1663077576;identity|s:7:\"tabitha\";username|s:7:\"tabitha\";email|s:18:\"tabitha@fmmsgh.com\";user_id|s:1:\"7\";old_last_login|s:10:\"1662997645\";last_ip|s:13:\"154.160.1.238\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663077555;register_id|s:1:\"5\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-12 08:43:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4007902f31088faab3a22158ac4d87599a19b4ad', '197.159.139.219', 1663075366, '__ci_last_regenerate|i:1663075366;identity|s:7:\"appiahs\";username|s:7:\"appiahs\";email|s:16:\"appiahs@fmms.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663020034\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"UDmTxKXjw8hrRA4zFW6M\";last_activity|i:1663075285;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-09 17:56:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b814061394855e8b9e47a11ec1986f7989ba06c9', '197.159.139.219', 1663075625, '__ci_last_regenerate|i:1663075625;identity|s:7:\"tabitha\";username|s:7:\"tabitha\";email|s:18:\"tabitha@fmmsgh.com\";user_id|s:1:\"7\";old_last_login|s:10:\"1662997645\";last_ip|s:13:\"154.160.1.238\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663075389;register_id|s:1:\"5\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-12 08:43:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9edf1c7967de43c8be184e422c3e80143d3a8597', '197.159.139.219', 1663075776, '__ci_last_regenerate|i:1663075776;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:14:\"grace@fmms.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1662999344\";last_ip|s:13:\"154.160.22.87\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663075714;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 ('9b5833c87b13fcc96383b6a56f259fa15f91d380', '197.159.139.219', 1663075672, '__ci_last_regenerate|i:1663075672;identity|s:7:\"appiahs\";username|s:7:\"appiahs\";email|s:16:\"appiahs@fmms.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663020034\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"QA3jJlVoXf1ObCs7IKGy\";last_activity|i:1663075487;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-09 17:56:00\";remove_pols|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2b14a763039d6d147a47d4a480e99a3924527ce', '197.159.139.219', 1663076158, '__ci_last_regenerate|i:1663076158;identity|s:7:\"tabitha\";username|s:7:\"tabitha\";email|s:18:\"tabitha@fmmsgh.com\";user_id|s:1:\"7\";old_last_login|s:10:\"1662997645\";last_ip|s:13:\"154.160.1.238\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663075625;register_id|s:1:\"5\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-12 08:43:10\";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 ('f4156ca0bd03850437ceb25ccd124934033d9a4b', '197.159.139.219', 1663075275, '__ci_last_regenerate|i:1663075275;identity|s:5:\"grace\";username|s:5:\"grace\";email|s:14:\"grace@fmms.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1662999344\";last_ip|s:13:\"154.160.22.87\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1663074587;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-09-11 20:44:02\";remove_posls|i:1;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,
  `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`, `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', '', 0, '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@fmms.com', 0, 4, 1, 0, 3, 0, 0, 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);


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

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


#
# TABLE STRUCTURE FOR: sma_suspended_bills
#

DROP TABLE IF EXISTS `sma_suspended_bills`;

CREATE TABLE `sma_suspended_bills` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` timestamp NOT NULL DEFAULT current_timestamp(),
  `customer_id` int(11) NOT NULL,
  `customer` varchar(55) DEFAULT NULL,
  `count` int(11) NOT NULL,
  `order_discount_id` varchar(20) DEFAULT NULL,
  `order_tax_id` int(11) DEFAULT NULL,
  `total` decimal(25,4) NOT NULL,
  `biller_id` int(11) DEFAULT NULL,
  `warehouse_id` int(11) DEFAULT NULL,
  `created_by` int(11) NOT NULL,
  `suspend_note` varchar(255) DEFAULT NULL,
  `shipping` decimal(15,4) DEFAULT 0.0000,
  `cgst` decimal(25,4) DEFAULT NULL,
  `sgst` decimal(25,4) DEFAULT NULL,
  `igst` decimal(25,4) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=8 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);


#
# 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=130 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);


#
# 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=100 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');


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

INSERT INTO `sma_users` (`id`, `last_ip_address`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`, `avatar`, `gender`, `group_id`, `warehouse_id`, `biller_id`, `company_id`, `show_cost`, `show_price`, `award_points`, `view_right`, `edit_right`, `allow_discount`) VALUES (1, '102.176.65.79', '\0\0', 'owner', '2c8ab736b2ccab4f50e72d5fd7d21020cbb77ae7', NULL, 'owner@tecdiary.com', NULL, NULL, NULL, NULL, 1351661704, 1659998047, 1, 'Owner', 'Owner', 'Stock Manager', '012345678', NULL, 'male', 1, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0);
INSERT INTO `sma_users` (`id`, `last_ip_address`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`, `avatar`, `gender`, `group_id`, `warehouse_id`, `biller_id`, `company_id`, `show_cost`, `show_price`, `award_points`, `view_right`, `edit_right`, `allow_discount`) VALUES (2, '102.176.65.39', '154.160.22.26', 'appiah', '0510c5574ff1a0dc53ebd7cbe87cce66bdbcc71d', NULL, 'manager@fmmsgh.com', NULL, NULL, NULL, NULL, 1659938478, 1663152776, 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', 5, 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', 'appiahs', '335d405f43f0f3ca18b6a785f07327cb8554ed8f', NULL, 'appiahs@fmms.com', NULL, NULL, NULL, NULL, 1662653771, 1663064632, 1, 'appia', 'hon', 'fmms', '010393939', 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 (6, '197.159.139.219', '197.159.139.219', 'grace', '53933c2e1f9545e651951c57dcb5d439cd2494eb', NULL, 'grace@fmms.com', NULL, NULL, NULL, '8e89d75f213a4b61fa7e5b3aaf9c3768ad90bec0', 1662928668, 1663140923, 1, 'Grace', 'Bosompem', 'fmms madina wholesale', '0243338735', NULL, 'female', 2, 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 (7, '197.159.139.219', '197.159.139.219', 'tabitha', 'a1f5428d92455339ad52abf17dbfeca35a83ed3a', NULL, 'tabitha@fmmsgh.com', NULL, NULL, NULL, NULL, 1662928830, 1663141999, 1, 'Tabitha', 'Mensah', 'fmms madina wholesale', '0550605133', NULL, 'female', 5, 1, 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=3 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);


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

INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4707, 6328, 1, '19.0000', NULL, '26.9000');
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, '210.0000', NULL, '1.4900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4711, 6332, 1, '85.0000', NULL, '16.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4712, 6333, 1, '138.0000', NULL, '7.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4713, 6334, 1, '-2.0000', NULL, '0.0000');
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, '1.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4716, 6337, 1, '87.0000', NULL, '49.5300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4717, 6338, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4718, 6339, 1, '11.0000', NULL, '60.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4719, 6340, 1, '6.0000', NULL, '60.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4720, 6341, 1, '31.0000', NULL, '62.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4721, 6342, 1, '15.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, '3.0000', NULL, '220.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4724, 6345, 1, '117.0000', NULL, '3.6300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4725, 6346, 1, '250.0000', NULL, '2.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4726, 6347, 1, '40.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4727, 6348, 1, '-2.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4728, 6349, 1, '30.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4729, 6350, 1, '16.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4730, 6351, 1, '38.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4731, 6352, 1, '273.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4732, 6353, 1, '705.0000', NULL, '3.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4733, 6354, 1, '1095.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, '4.0000', NULL, '7.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4736, 6357, 1, '68.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4737, 6358, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4738, 6359, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4739, 6360, 1, '82.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4740, 6361, 1, '93.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, '211.0000', NULL, '14.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4743, 6364, 1, '24.0000', NULL, '35.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4744, 6365, 1, '178.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4745, 6366, 1, '10.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, '35.0000', NULL, '12.8400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4748, 6369, 1, '32.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, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4750, 6371, 1, '64.0000', NULL, '27.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4751, 6372, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4752, 6373, 1, '89.0000', NULL, '72.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4753, 6374, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4754, 6375, 1, '342.0000', NULL, '3.5200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4755, 6376, 1, '2432.0000', NULL, '1.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4756, 6377, 1, '31.0000', NULL, '55.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4757, 6378, 1, '212.0000', NULL, '26.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4758, 6379, 1, '-15.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4759, 6380, 1, '52.0000', NULL, '13.1400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4760, 6381, 1, '59.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4761, 6382, 1, '183.0000', NULL, '4.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4762, 6383, 1, '120.0000', NULL, '8.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4763, 6384, 1, '131.0000', NULL, '9.6600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4764, 6385, 1, '150.0000', NULL, '7.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4765, 6386, 1, '695.0000', NULL, '3.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4766, 6387, 1, '0.0000', NULL, '0.0000');
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, '32.0000', NULL, '7.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4769, 6390, 1, '4.0000', NULL, '29.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4770, 6391, 1, '102.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, '57.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4773, 6394, 1, '16.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4774, 6395, 1, '8.0000', NULL, '9.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4775, 6396, 1, '15.0000', NULL, '13.5000');
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, '273.0000', NULL, '6.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4779, 6400, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4780, 6401, 1, '7.0000', NULL, '37.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4781, 6402, 1, '8.0000', NULL, '18.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4782, 6403, 1, '0.0000', NULL, '0.0000');
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, '13.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, '365.0000', NULL, '4.6700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4788, 6409, 1, '179.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, '73.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, '31.0000', NULL, '9.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4794, 6415, 1, '240.0000', NULL, '4.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4795, 6416, 1, '76.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4796, 6417, 1, '73.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4797, 6418, 1, '758.0000', NULL, '6.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4798, 6419, 1, '40.0000', NULL, '4.6700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4799, 6420, 1, '50.0000', NULL, '15.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4800, 6421, 1, '-1.0000', NULL, '0.0000');
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, '64.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4803, 6424, 1, '44.0000', NULL, '7.9300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4804, 6425, 1, '11.0000', NULL, '6.7000');
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, '30.0000', NULL, '17.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4807, 6428, 1, '46.0000', NULL, '16.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4808, 6429, 1, '24.0000', NULL, '15.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4809, 6430, 1, '360.0000', NULL, '1.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4810, 6431, 1, '0.0000', NULL, '0.0000');
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, '14.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4813, 6434, 1, '133.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4814, 6435, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4815, 6436, 1, '92.0000', NULL, '1.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4816, 6437, 1, '30.0000', NULL, '18.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4817, 6438, 1, '40.0000', NULL, '34.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4818, 6439, 1, '14.0000', NULL, '10.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4819, 6440, 1, '20.0000', NULL, '88.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4820, 6441, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4821, 6442, 1, '0.0000', NULL, '0.0000');
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, '7.0000', NULL, '25.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4824, 6445, 1, '26.0000', NULL, '21.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4825, 6446, 1, '140.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, '93.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4828, 6449, 1, '41.0000', NULL, '25.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4829, 6450, 1, '29.0000', NULL, '45.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4830, 6451, 1, '19.0000', NULL, '53.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4831, 6452, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4832, 6453, 1, '7.0000', NULL, '50.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4833, 6454, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4834, 6455, 1, '145.0000', NULL, '19.5800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4835, 6456, 1, '25.0000', NULL, '21.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4836, 6457, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4837, 6458, 1, '121.0000', NULL, '22.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4838, 6459, 1, '45.0000', NULL, '20.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4839, 6460, 1, '63.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, '10.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, '33.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4844, 6465, 1, '15.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4845, 6466, 1, '28.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4846, 6467, 1, '2.0000', NULL, '40.0000');
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, '19.0000', NULL, '28.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4852, 6473, 1, '2.0000', NULL, '54.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4853, 6474, 1, '98.0000', NULL, '71.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4854, 6475, 1, '5.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, '0.0000', NULL, '7.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4858, 6479, 1, '36.0000', NULL, '39.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4859, 6480, 1, '17.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4860, 6481, 1, '1.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, '10.0000', NULL, '59.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4864, 6485, 1, '14.0000', NULL, '109.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4865, 6486, 1, '64.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4866, 6487, 1, '0.0000', NULL, '0.0000');
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, '78.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4870, 6491, 1, '400.0000', NULL, '9.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4871, 6492, 1, '5.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, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4876, 6497, 1, '0.0000', NULL, '0.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, '0.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, '3.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, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4885, 6506, 1, '34.0000', NULL, '3.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4886, 6507, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4887, 6508, 1, '28.0000', NULL, '13.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4888, 6509, 1, '159.0000', NULL, '13.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4889, 6510, 1, '70.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4890, 6511, 1, '0.0000', NULL, '0.0000');
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, '37.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4893, 6514, 1, '19.0000', NULL, '6.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4894, 6515, 1, '4.0000', NULL, '13.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4895, 6516, 1, '13.0000', NULL, '7.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4896, 6517, 1, '102.0000', NULL, '8.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4897, 6518, 1, '30.0000', NULL, '61.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4898, 6519, 1, '13.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, '69.0000', NULL, '10.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4675, 6296, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4674, 6295, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4673, 6294, 1, '78.0000', NULL, '23.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4672, 6293, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4671, 6292, 1, '37.0000', NULL, '7.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4670, 6291, 1, '5.0000', NULL, '45.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4669, 6290, 1, '25.0000', NULL, '122.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4668, 6289, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4667, 6288, 1, '90.0000', NULL, '56.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4666, 6287, 1, '47.0000', NULL, '13.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4665, 6286, 1, '25.0000', NULL, '9.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4664, 6285, 1, '212.0000', NULL, '9.4700');
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, '373.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, '3.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4659, 6280, 1, '5.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4658, 6279, 1, '37.0000', NULL, '26.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4657, 6278, 1, '14.0000', NULL, '27.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4656, 6277, 1, '13.0000', NULL, '22.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4655, 6276, 1, '16.0000', NULL, '17.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4654, 6275, 1, '322.0000', NULL, '4.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4653, 6274, 1, '38.0000', NULL, '19.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4652, 6273, 1, '262.0000', NULL, '26.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4651, 6272, 1, '4.0000', NULL, '31.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4650, 6271, 1, '41.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, '30.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, '61.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, '17.0000', NULL, '11.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4643, 6264, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4642, 6263, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4641, 6262, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4640, 6261, 1, '120.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4639, 6260, 1, '48.0000', NULL, '5.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4638, 6259, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4637, 6258, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4636, 6257, 1, '48.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4635, 6256, 1, '0.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, '2.0000', NULL, '36.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4632, 6253, 1, '12.0000', NULL, '168.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4631, 6252, 1, '-10.0000', NULL, '0.0000');
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, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4628, 6249, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4627, 6248, 1, '57.0000', NULL, '9.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4626, 6247, 1, '47.0000', NULL, '78.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4625, 6246, 1, '11.0000', NULL, '99.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4624, 6245, 1, '240.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, '20.0000', NULL, '57.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4621, 6242, 1, '75.0000', NULL, '62.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4620, 6241, 1, '17.0000', NULL, '13.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4619, 6240, 1, '0.0000', NULL, '0.0000');
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, '6.0000', NULL, '9.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4614, 6235, 1, '29.0000', NULL, '4.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4613, 6234, 1, '0.0000', NULL, '33.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4612, 6233, 1, '50.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4611, 6232, 1, '91.0000', NULL, '7.1000');
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 (4609, 6230, 1, '0.0000', NULL, '0.0000');
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, '37.0000', NULL, '20.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4606, 6227, 1, '97.0000', NULL, '2.8400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4605, 6226, 1, '1.0000', NULL, '1.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4604, 6225, 1, '687.0000', NULL, '2.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4603, 6224, 1, '100.0000', NULL, '1.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4601, 6222, 1, '96.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4600, 6221, 1, '50.0000', NULL, '12.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4599, 6220, 1, '445.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4598, 6219, 1, '202.0000', NULL, '2.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4597, 6218, 1, '85.0000', NULL, '13.5800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4596, 6217, 1, '80.0000', NULL, '2.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4595, 6216, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4594, 6215, 1, '83.0000', NULL, '30.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4593, 6214, 1, '147.0000', NULL, '2.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4592, 6213, 1, '144.0000', NULL, '6.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4591, 6212, 1, '158.0000', NULL, '6.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4590, 6211, 1, '98.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4589, 6210, 1, '115.0000', NULL, '7.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4588, 6209, 1, '88.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4587, 6208, 1, '112.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4586, 6207, 1, '32.0000', NULL, '38.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4585, 6206, 1, '62.0000', NULL, '7.8400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4584, 6205, 1, '223.0000', NULL, '38.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4583, 6204, 1, '29.0000', NULL, '15.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4582, 6203, 1, '24.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4581, 6202, 1, '509.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4580, 6201, 1, '260.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, '38.0000', NULL, '55.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4576, 6197, 1, '8.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, '186.0000', NULL, '5.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4573, 6194, 1, '172.0000', NULL, '5.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4572, 6193, 1, '37.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, '102.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4569, 6190, 1, '55.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4568, 6189, 1, '6.0000', NULL, '1.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4567, 6188, 1, '95.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4566, 6187, 1, '45.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, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4563, 6184, 1, '42.0000', NULL, '7.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4562, 6183, 1, '200.0000', NULL, '5.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4561, 6182, 1, '24.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, '84.0000', NULL, '12.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4558, 6179, 1, '1780.0000', NULL, '2.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4557, 6178, 1, '1720.0000', NULL, '1.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4556, 6177, 1, '158.0000', NULL, '384366451507800.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4555, 6176, 1, '292.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, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4552, 6173, 1, '20.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, '24.0000', NULL, '8.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4549, 6170, 1, '16.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4548, 6169, 1, '51.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, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4545, 6166, 1, '2.0000', NULL, '5.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4544, 6165, 1, '1.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4543, 6164, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4542, 6163, 1, '12.0000', NULL, '5.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4541, 6162, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4540, 6161, 1, '25.0000', NULL, '5.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4539, 6160, 1, '25.0000', NULL, '5.1000');
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, '0.0000');
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, '0.0000', NULL, '0.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, '118.0000', NULL, '39.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4532, 6153, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4531, 6152, 1, '1009.0000', NULL, '1.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4530, 6151, 1, '62.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, '5.0000', NULL, '41.5800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4527, 6148, 1, '15.0000', NULL, '24.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4526, 6147, 1, '39.0000', NULL, '35.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4525, 6146, 1, '74.0000', NULL, '33.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4524, 6145, 1, '66.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4523, 6144, 1, '20.0000', NULL, '88.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4522, 6143, 1, '100.0000', NULL, '11.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4521, 6142, 1, '23.0000', NULL, '9.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4520, 6141, 1, '52.0000', NULL, '15.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4519, 6140, 1, '9.0000', NULL, '30.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4518, 6139, 1, '48.0000', NULL, '15.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4517, 6138, 1, '33.0000', NULL, '17.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4516, 6137, 1, '205.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4515, 6136, 1, '194.0000', NULL, '3.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4514, 6135, 1, '12.0000', NULL, '35.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4513, 6134, 1, '165.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, '175.0000', NULL, '4.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4510, 6131, 1, '43.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4509, 6130, 1, '38.0000', NULL, '6.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4508, 6129, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4507, 6128, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4506, 6127, 1, '99.0000', NULL, '7.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4505, 6126, 1, '44.0000', NULL, '11.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4504, 6125, 1, '213.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4503, 6124, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4502, 6123, 1, '15.0000', NULL, '52.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4500, 6121, 1, '24.0000', NULL, '25.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4499, 6120, 1, '31.0000', NULL, '14.8500');
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, '6.0000', NULL, '172.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4496, 6117, 1, '327.0000', NULL, '6.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4495, 6116, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4494, 6115, 1, '42.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, '158.0000', NULL, '9.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4491, 6112, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4490, 6111, 1, '57.0000', NULL, '14.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4489, 6110, 1, '15.0000', NULL, '34.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4488, 6109, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4487, 6108, 1, '34.0000', NULL, '11.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4486, 6107, 1, '180.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4485, 6106, 1, '5.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4484, 6105, 1, '1.0000', NULL, '12.0000');
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, '50.0000', NULL, '15.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4481, 6102, 1, '101.0000', NULL, '27.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4480, 6101, 1, '75.0000', NULL, '28.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4479, 6100, 1, '34.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4478, 6099, 1, '41.0000', NULL, '29.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4477, 6098, 1, '1380.0000', NULL, '5.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4476, 6097, 1, '289.0000', NULL, '7.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4475, 6096, 1, '66.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4474, 6095, 1, '227.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, '40.0000', NULL, '14.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4470, 6091, 1, '0.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, '32.0000', NULL, '73.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4467, 6088, 1, '18.0000', NULL, '23.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4466, 6087, 1, '0.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, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4463, 6084, 1, '35.0000', NULL, '72.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4462, 6083, 1, '1407.0000', NULL, '2.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4461, 6082, 1, '251.0000', NULL, '6.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4460, 6081, 1, '90.0000', NULL, '10.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4459, 6080, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4458, 6079, 1, '11.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4457, 6078, 1, '587.0000', NULL, '42.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4456, 6077, 1, '-7.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4455, 6076, 1, '2901.0000', NULL, '2.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4454, 6075, 1, '2936.0000', NULL, '2.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4453, 6074, 1, '3259.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, '10.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 (4446, 6067, 1, '0.0000', NULL, '0.0000');
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, '7.0000', NULL, '4.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4443, 6064, 1, '6.0000', NULL, '4.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4442, 6063, 1, '23.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, '-1.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4437, 6058, 1, '5.0000', NULL, '20.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4436, 6057, 1, '84.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, '63.0000', NULL, '14.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4431, 6052, 1, '29.0000', NULL, '8.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4430, 6051, 1, '0.0000', NULL, '0.0000');
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, '0.0000', NULL, '0.0000');
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, '30.0000', NULL, '8.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4425, 6046, 1, '19.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, '23.0000', NULL, '5.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4421, 6042, 1, '54.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, '12.0000', NULL, '3.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4418, 6039, 1, '6.0000', NULL, '4.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4417, 6038, 1, '150.0000', NULL, '8.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4416, 6037, 1, '44.0000', NULL, '9.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4415, 6036, 1, '25.0000', NULL, '4.4300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4414, 6035, 1, '1.0000', NULL, '7.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4413, 6034, 1, '21.0000', NULL, '41.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4412, 6033, 1, '92.0000', NULL, '31.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4411, 6032, 1, '89.0000', NULL, '17.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4410, 6031, 1, '62.0000', NULL, '17.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4409, 6030, 1, '9.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, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4406, 6027, 1, '33.0000', NULL, '17.2600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4405, 6026, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4404, 6025, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4403, 6024, 1, '34.0000', NULL, '4.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4402, 6023, 1, '28.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, '78.0000', NULL, '16.3100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4398, 6019, 1, '245.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, '0.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, '41.0000', NULL, '43.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4393, 6014, 1, '18.0000', NULL, '10.6800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4392, 6013, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4391, 6012, 1, '15.0000', NULL, '16.6600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4390, 6011, 1, '88.0000', NULL, '14.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4389, 6010, 1, '190.0000', NULL, '16.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4388, 6009, 1, '64.0000', NULL, '35.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4387, 6008, 1, '156.0000', NULL, '4.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4386, 6007, 1, '226.0000', NULL, '11.3800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4385, 6006, 1, '22.0000', NULL, '10.8300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4384, 6005, 1, '30.0000', NULL, '7.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4383, 6004, 1, '46.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4382, 6003, 1, '95.0000', NULL, '6.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4381, 6002, 1, '7.0000', NULL, '6.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4380, 6001, 1, '40.0000', NULL, '5.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4379, 6000, 1, '56.0000', NULL, '11.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4378, 5999, 1, '7.0000', NULL, '25.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4377, 5998, 1, '65.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4376, 5997, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4375, 5996, 1, '727.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4374, 5995, 1, '125.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4373, 5994, 1, '1.0000', NULL, '33.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4372, 5993, 1, '15.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4371, 5992, 1, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4370, 5991, 1, '27.0000', NULL, '37.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4369, 5990, 1, '13.0000', NULL, '6.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4368, 5989, 1, '44.0000', NULL, '28.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4367, 5988, 1, '152.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, '136.0000', NULL, '13.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4364, 5985, 1, '113.0000', NULL, '12.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4363, 5984, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4362, 5983, 1, '294.0000', NULL, '5.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4361, 5982, 1, '180.0000', NULL, '7.9400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4360, 5981, 1, '0.0000', NULL, '12.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4359, 5980, 1, '29.0000', NULL, '11.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4358, 5979, 1, '482.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4357, 5978, 1, '23.0000', NULL, '21.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4356, 5977, 1, '200.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4355, 5976, 1, '402.0000', NULL, '7.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4354, 5975, 1, '138.0000', NULL, '9.1500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4353, 5974, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4352, 5973, 1, '6.0000', NULL, '8.3000');
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, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4349, 5970, 1, '52.0000', NULL, '9.1500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4348, 5969, 1, '335.0000', NULL, '8.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4347, 5968, 1, '18.0000', NULL, '10.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4346, 5967, 1, '5880.0000', NULL, '3.7220');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4345, 5966, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4344, 5965, 1, '0.0000', NULL, '0.0000');
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, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4341, 5962, 1, '65.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, '5.0000', NULL, '23.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4337, 5958, 1, '45.0000', NULL, '16.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4336, 5957, 1, '-1.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4335, 5956, 1, '15.0000', NULL, '17.8400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4334, 5955, 1, '0.0000', NULL, '0.0000');
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 (4331, 5952, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4330, 5951, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4329, 5950, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4328, 5949, 1, '934.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4327, 5948, 1, '710.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4326, 5947, 1, '119.0000', NULL, '13.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4325, 5946, 1, '12.0000', NULL, '58.4000');
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 (4323, 5944, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4322, 5943, 1, '9.0000', NULL, '0.0000');
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, '29.0000', NULL, '37.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4319, 5940, 1, '0.0000', NULL, '0.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 (4317, 5938, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4316, 5937, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4315, 5936, 1, '1.0000', NULL, '45.2400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5250, 6871, 1, '10.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4313, 5934, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4312, 5933, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4311, 5932, 1, '32.0000', NULL, '11.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4310, 5931, 1, '61.0000', NULL, '12.8400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4309, 5930, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4308, 5929, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4307, 5928, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4306, 5927, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4305, 5926, 1, '1098.0000', NULL, '10.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4304, 5925, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4303, 5924, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4302, 5923, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4301, 5922, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4300, 5921, 1, '0.0000', NULL, '0.0000');
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, '-9.0000', NULL, '1.4300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4683, 6304, 1, '173.0000', NULL, '13.5000');
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, '41.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, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4689, 6310, 1, '0.0000', NULL, '0.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, '24.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, '7.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, '55.0000', NULL, '62.0000');
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, '38.0000', NULL, '63.2200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4700, 6321, 1, '30.0000', NULL, '25.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4701, 6322, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4702, 6323, 1, '9.0000', NULL, '39.0000');
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, '19.0000', NULL, '55.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4705, 6326, 1, '67.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4706, 6327, 1, '28.0000', NULL, '28.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4681, 6302, 1, '111.0000', NULL, '23.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4680, 6301, 1, '72.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4679, 6300, 1, '0.0000', NULL, '0.0000');
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, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4602, 6223, 1, '22.0000', NULL, '0.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4501, 6122, 1, '28.0000', NULL, '47.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4400, 6021, 1, '16.0000', NULL, '3.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4219, 5840, 1, '220.0000', NULL, '27.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4220, 5841, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4221, 5842, 1, '0.0000', NULL, '0.0000');
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 (4223, 5844, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4224, 5845, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4225, 5846, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4226, 5847, 1, '550.0000', NULL, '3.1651');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4227, 5848, 1, '73.0000', NULL, '8.2800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4228, 5849, 1, '187.0000', NULL, '3.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4229, 5850, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4230, 5851, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4231, 5852, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4232, 5853, 1, '187.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4233, 5854, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4234, 5855, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4235, 5856, 1, '21.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4236, 5857, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4237, 5858, 1, '0.0000', NULL, '0.0000');
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 (4239, 5860, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4240, 5861, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4241, 5862, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4242, 5863, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4243, 5864, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4244, 5865, 1, '795.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4245, 5866, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4246, 5867, 1, '0.0000', NULL, '0.0000');
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, '26.0000', NULL, '38.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4249, 5870, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4250, 5871, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4251, 5872, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4252, 5873, 1, '46.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4253, 5874, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4254, 5875, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4255, 5876, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4256, 5877, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4257, 5878, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4258, 5879, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4259, 5880, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4260, 5881, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4261, 5882, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4262, 5883, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4263, 5884, 1, '13.0000', NULL, '3.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4264, 5885, 1, '85.0000', NULL, '8.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4265, 5886, 1, '130.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 (4267, 5888, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4268, 5889, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4269, 5890, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4270, 5891, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4271, 5892, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4272, 5893, 1, '0.0000', NULL, '0.0000');
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 (4274, 5895, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4275, 5896, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4276, 5897, 1, '16.0000', NULL, '23.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4277, 5898, 1, '328.0000', NULL, '13.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4278, 5899, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4279, 5900, 1, '0.0000', NULL, '0.0000');
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 (4281, 5902, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4282, 5903, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4283, 5904, 1, '29.0000', NULL, '24.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4284, 5905, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4285, 5906, 1, '46.0000', NULL, '15.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4286, 5907, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4287, 5908, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4288, 5909, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4289, 5910, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4290, 5911, 1, '20.0000', NULL, '28.8750');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4291, 5912, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4292, 5913, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4293, 5914, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4294, 5915, 1, '6.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 (4296, 5917, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4297, 5918, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4298, 5919, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4299, 5920, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4218, 5839, 1, '84.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4217, 5838, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4216, 5837, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4215, 5836, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4214, 5835, 1, '6.0000', NULL, '33.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4213, 5834, 1, '10.0000', NULL, '41.5800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4212, 5833, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4211, 5832, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4210, 5831, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5267, 6887, 1, '30.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 (3785, 5406, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3786, 5407, 1, '0.0000', NULL, '0.0000');
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 (3790, 5411, 1, '0.0000', NULL, '0.0000');
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, '20.0000', NULL, '10.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5263, 6883, 1, '100.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 (3795, 5416, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3796, 5417, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3797, 5418, 1, '425.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3798, 5419, 1, '59.0000', NULL, '14.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3799, 5420, 1, '0.0000', NULL, '0.0000');
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, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3802, 5423, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3803, 5424, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3804, 5425, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3805, 5426, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3806, 5427, 1, '151.0000', NULL, '13.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3807, 5428, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3808, 5429, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3809, 5430, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3810, 5431, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3811, 5432, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3812, 5433, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3813, 5434, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3814, 5435, 1, '198.0000', NULL, '7.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3815, 5436, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3816, 5437, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3817, 5438, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3818, 5439, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3819, 5440, 1, '556.0000', NULL, '3.4100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3820, 5441, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3821, 5442, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3822, 5443, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3823, 5444, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3824, 5445, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3825, 5446, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3826, 5447, 1, '20.0000', NULL, '19.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3827, 5448, 1, '100.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 (3829, 5450, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3830, 5451, 1, '1550.0000', NULL, '5.8600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3831, 5452, 1, '21.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3832, 5453, 1, '4.0000', NULL, '7.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3833, 5454, 1, '0.0000', NULL, '0.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, '25.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, '12.0000', NULL, '5.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3839, 5460, 1, '6.0000', NULL, '235.7300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3840, 5461, 1, '5.0000', NULL, '194.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3841, 5462, 1, '29.0000', NULL, '7.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3842, 5463, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3843, 5464, 1, '12.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3844, 5465, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3845, 5466, 1, '0.0000', NULL, '0.0000');
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 (5269, 6889, 1, '45.0000', NULL, '24.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3849, 5470, 1, '1.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3850, 5471, 1, '101.0000', NULL, '5.0400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3851, 5472, 1, '-11.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3852, 5473, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3853, 5474, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3854, 5475, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3855, 5476, 1, '6.0000', NULL, '-49557911.5565');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3856, 5477, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3857, 5478, 1, '15.0000', NULL, '6.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3858, 5479, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3859, 5480, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3860, 5481, 1, '0.0000', NULL, '0.0000');
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 (3862, 5483, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3863, 5484, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3864, 5485, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3865, 5486, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3866, 5487, 1, '4.0000', NULL, '18.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3867, 5488, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3868, 5489, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3869, 5490, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3870, 5491, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3871, 5492, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3872, 5493, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3873, 5494, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3874, 5495, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3875, 5496, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3876, 5497, 1, '64.0000', NULL, '5.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3877, 5498, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3878, 5499, 1, '116.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, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3880, 5501, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3881, 5502, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5264, 6884, 1, '72.0000', NULL, '43.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5262, 6882, 1, '29.0000', NULL, '22.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5240, 6861, 1, '12.0000', NULL, '74.6800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3885, 5506, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3886, 5507, 1, '19.0000', NULL, '4.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3887, 5508, 1, '9.0000', NULL, '77.9100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3888, 5509, 1, '46.0000', NULL, '6.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3889, 5510, 1, '3.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, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5265, 6885, 1, '20.0000', NULL, '8.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3892, 5513, 1, '2.0000', NULL, '94.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5261, 6881, 1, '30.0000', NULL, '49.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3894, 5515, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3895, 5516, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5260, 6880, 1, '400.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3897, 5518, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3898, 5519, 1, '0.0000', NULL, '3.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5259, 6879, 1, '390.0000', NULL, '3.8700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3900, 5521, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5252, 6872, 1, '30.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5258, 6878, 1, '450.0000', NULL, '2.1375');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5257, 6877, 1, '60.0000', NULL, '12.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3904, 5525, 1, '1.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, '15.0000', NULL, '27.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3907, 5528, 1, '3.0000', NULL, '11.5800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3908, 5529, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3909, 5530, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3910, 5531, 1, '14.0000', NULL, '80.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3911, 5532, 1, '102.0000', NULL, '56.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3912, 5533, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3913, 5534, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3914, 5535, 1, '2476.0000', NULL, '3.9100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3915, 5536, 1, '15.0000', NULL, '52.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3916, 5537, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3917, 5538, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3918, 5539, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3919, 5540, 1, '65.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3920, 5541, 1, '29.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3921, 5542, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3922, 5543, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3923, 5544, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3924, 5545, 1, '0.0000', NULL, '0.0000');
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 (3926, 5547, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3927, 5548, 1, '413.0000', NULL, '2.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3928, 5549, 1, '534.0000', NULL, '8.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3929, 5550, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3930, 5551, 1, '0.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, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3932, 5553, 1, '-1.0000', NULL, '32.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3933, 5554, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3934, 5555, 1, '7.0000', NULL, '107.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3935, 5556, 1, '18.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3936, 5557, 1, '27.0000', NULL, '175.6100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3937, 5558, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3938, 5559, 1, '86.0000', NULL, '8.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3939, 5560, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3940, 5561, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3941, 5562, 1, '0.0000', NULL, '47.7700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3942, 5563, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3943, 5564, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3944, 5565, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3945, 5566, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3946, 5567, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3947, 5568, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3948, 5569, 1, '9.0000', NULL, '21.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3949, 5570, 1, '2.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 (3951, 5572, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3952, 5573, 1, '1080.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3953, 5574, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3954, 5575, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3955, 5576, 1, '65.0000', NULL, '8.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3956, 5577, 1, '3.0000', NULL, '81.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3957, 5578, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3958, 5579, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3959, 5580, 1, '37.0000', NULL, '7.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3960, 5581, 1, '197.0000', NULL, '11.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3961, 5582, 1, '441.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3962, 5583, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3963, 5584, 1, '12.0000', NULL, '17.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3964, 5585, 1, '58.0000', NULL, '23.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3965, 5586, 1, '285.0000', NULL, '28.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3966, 5587, 1, '355.0000', NULL, '8.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3967, 5588, 1, '259.0000', NULL, '14.9600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3968, 5589, 1, '344.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, '100.0000', NULL, '7.1500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3972, 5593, 1, '41.0000', NULL, '38.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3973, 5594, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3974, 5595, 1, '0.0000', NULL, '158.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3975, 5596, 1, '220.0000', NULL, '16.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3976, 5597, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3977, 5598, 1, '561.0000', NULL, '2.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3978, 5599, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3979, 5600, 1, '892.0000', NULL, '2.6233');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3980, 5601, 1, '708.0000', NULL, '4.2917');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3981, 5602, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3982, 5603, 1, '119.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, '6.0000', NULL, '21.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3985, 5606, 1, '0.0000', NULL, '0.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 (3987, 5608, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3988, 5609, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3989, 5610, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3990, 5611, 1, '14.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3991, 5612, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3992, 5613, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3993, 5614, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3994, 5615, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3995, 5616, 1, '-25.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3996, 5617, 1, '33.0000', NULL, '39.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3997, 5618, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3998, 5619, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3999, 5620, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4000, 5621, 1, '0.0000', NULL, '0.0000');
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, '89.0000', NULL, '18.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4003, 5624, 1, '6.0000', NULL, '20.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4004, 5625, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4005, 5626, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4006, 5627, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4007, 5628, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4008, 5629, 1, '152.0000', NULL, '8.4000');
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, '130.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4011, 5632, 1, '151.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4012, 5633, 1, '14.0000', NULL, '226.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4013, 5634, 1, '38.0000', NULL, '7.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4014, 5635, 1, '0.0000', NULL, '14.7600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4015, 5636, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4016, 5637, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4017, 5638, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4018, 5639, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4019, 5640, 1, '242.0000', NULL, '11.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4020, 5641, 1, '110.0000', NULL, '31.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4021, 5642, 1, '89.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.7600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4023, 5644, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4024, 5645, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4025, 5646, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4026, 5647, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4027, 5648, 1, '-2.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4028, 5649, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4029, 5650, 1, '28.0000', NULL, '7.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4030, 5651, 1, '84.0000', NULL, '6.1700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4031, 5652, 1, '85.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4032, 5653, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4033, 5654, 1, '666.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4034, 5655, 1, '12.0000', NULL, '28.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4035, 5656, 1, '0.0000', NULL, '9.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4036, 5657, 1, '527.0000', NULL, '4.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4037, 5658, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4038, 5659, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4039, 5660, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4040, 5661, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4041, 5662, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4042, 5663, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4043, 5664, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4044, 5665, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4045, 5666, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4046, 5667, 1, '65.0000', NULL, '11.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4047, 5668, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4048, 5669, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4049, 5670, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4050, 5671, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4051, 5672, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4052, 5673, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4053, 5674, 1, '0.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4054, 5675, 1, '14.0000', NULL, '65.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4055, 5676, 1, '260.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4056, 5677, 1, '468.0000', NULL, '13.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4057, 5678, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4058, 5679, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4059, 5680, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4060, 5681, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4061, 5682, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4062, 5683, 1, '12.0000', NULL, '49.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4063, 5684, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4064, 5685, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4065, 5686, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4066, 5687, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4067, 5688, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4068, 5689, 1, '281.0000', NULL, '3.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4069, 5690, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4070, 5691, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4071, 5692, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4072, 5693, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4073, 5694, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4074, 5695, 1, '9.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4075, 5696, 1, '75.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4076, 5697, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4077, 5698, 1, '0.0000', NULL, '0.0000');
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 (4079, 5700, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4080, 5701, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4081, 5702, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4082, 5703, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4083, 5704, 1, '51.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4084, 5705, 1, '74.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4085, 5706, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4086, 5707, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4087, 5708, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4088, 5709, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4089, 5710, 1, '186.0000', NULL, '4.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4090, 5711, 1, '9.0000', NULL, '44.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4091, 5712, 1, '1200.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4092, 5713, 1, '77.0000', NULL, '6.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4093, 5714, 1, '503.0000', NULL, '3.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4094, 5715, 1, '99.0000', NULL, '13.1400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4095, 5716, 1, '36.0000', NULL, '3.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4096, 5717, 1, '344.0000', NULL, '2.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5241, 6862, 1, '94.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4098, 5719, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4099, 5720, 1, '12.0000', NULL, '23.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4100, 5721, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4101, 5722, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4102, 5723, 1, '21.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4103, 5724, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4104, 5725, 1, '47.0000', NULL, '9.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4105, 5726, 1, '2.0000', NULL, '15.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4106, 5727, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4107, 5728, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4108, 5729, 1, '114.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4109, 5730, 1, '115.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4110, 5731, 1, '284.0000', NULL, '17.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4111, 5732, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4112, 5733, 1, '47.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4113, 5734, 1, '18.0000', NULL, '19.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4114, 5735, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4115, 5736, 1, '0.0000', NULL, '0.0000');
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, '3.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4118, 5739, 1, '72.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4119, 5740, 1, '973.0000', NULL, '15.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4120, 5741, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4121, 5742, 1, '5.0000', NULL, '311.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4122, 5743, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4123, 5744, 1, '60.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4124, 5745, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4125, 5746, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4126, 5747, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4127, 5748, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4128, 5749, 1, '134.0000', NULL, '8.1400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4129, 5750, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4130, 5751, 1, '149.0000', NULL, '10.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4131, 5752, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4132, 5753, 1, '52.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4133, 5754, 1, '0.0000', NULL, '0.0000');
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 (4135, 5756, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4136, 5757, 1, '109.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4137, 5758, 1, '0.0000', NULL, '0.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 (4139, 5760, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4140, 5761, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4141, 5762, 1, '24.0000', NULL, '20.7400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4142, 5763, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4143, 5764, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4144, 5765, 1, '18.0000', NULL, '63.2200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4145, 5766, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4146, 5767, 1, '6.0000', NULL, '5.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4147, 5768, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4148, 5769, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4149, 5770, 1, '115.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4150, 5771, 1, '71.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4151, 5772, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4152, 5773, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4153, 5774, 1, '26.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4154, 5775, 1, '97.0000', NULL, '22.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4155, 5776, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4156, 5777, 1, '21.0000', NULL, '24.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4157, 5778, 1, '12.0000', NULL, '16.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4158, 5779, 1, '65.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4159, 5780, 1, '1.0000', NULL, '198.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4160, 5781, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4161, 5782, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4162, 5783, 1, '3.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4163, 5784, 1, '7.0000', NULL, '78.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4164, 5785, 1, '23.0000', NULL, '63.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4165, 5786, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4166, 5787, 1, '14.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4167, 5788, 1, '26.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, '19.0000', NULL, '149.2800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4170, 5791, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4171, 5792, 1, '100.0000', NULL, '30.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4172, 5793, 1, '29.0000', NULL, '47.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4173, 5794, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4174, 5795, 1, '59.0000', NULL, '35.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4175, 5796, 1, '49.0000', NULL, '4.4800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4176, 5797, 1, '14.0000', NULL, '16.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4177, 5798, 1, '12.0000', NULL, '19.3400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4178, 5799, 1, '247.0000', NULL, '20.1300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4179, 5800, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4180, 5801, 1, '72.0000', NULL, '5.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4181, 5802, 1, '0.0000', NULL, '0.0000');
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, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4184, 5805, 1, '36.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4185, 5806, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4186, 5807, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4187, 5808, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4188, 5809, 1, '43.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 (4190, 5811, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4191, 5812, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4192, 5813, 1, '45.0000', NULL, '4.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4193, 5814, 1, '115.0000', NULL, '24.0900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4194, 5815, 1, '41.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4195, 5816, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4196, 5817, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4197, 5818, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4198, 5819, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4199, 5820, 1, '0.0000', NULL, '0.0000');
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 (4201, 5822, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4202, 5823, 1, '0.0000', NULL, '0.0000');
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, '12.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4206, 5827, 1, '43.0000', NULL, '5.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4207, 5828, 1, '0.0000', NULL, '0.0000');
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, '1.0000', NULL, '108.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4901, 6522, 1, '2.0000', NULL, '49.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4902, 6523, 1, '3.0000', NULL, '131.5700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4903, 6524, 1, '3.0000', NULL, '170.0000');
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, '0.0000', NULL, '0.0000');
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, '347.0000', NULL, '5.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4908, 6529, 1, '29.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, '7.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4911, 6532, 1, '73.0000', NULL, '7.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4912, 6533, 1, '19.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, '20.0000', NULL, '3.2800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4915, 6536, 1, '1.0000', NULL, '6.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4916, 6537, 1, '33.0000', NULL, '93.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4917, 6538, 1, '85.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, '85.0000', NULL, '7.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4922, 6543, 1, '84.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, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4926, 6547, 1, '8.0000', NULL, '9.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4927, 6548, 1, '0.0000', NULL, '0.0000');
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, '36.0000', NULL, '186.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4932, 6553, 1, '85.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4933, 6554, 1, '2.0000', NULL, '130.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4934, 6555, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4935, 6556, 1, '110.0000', NULL, '3.4022');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4936, 6557, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4937, 6558, 1, '31.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4938, 6559, 1, '26.0000', NULL, '66.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4939, 6560, 1, '26.0000', NULL, '41.6300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4940, 6561, 1, '21.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, '7.0000', NULL, '67.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4943, 6564, 1, '5.0000', NULL, '81.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4944, 6565, 1, '5.0000', NULL, '64.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4945, 6566, 1, '10.0000', NULL, '88.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4946, 6567, 1, '3.0000', NULL, '59.7700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4947, 6568, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4948, 6569, 1, '157.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4949, 6570, 1, '0.0000', NULL, '0.0000');
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, '190.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4952, 6573, 1, '35.0000', NULL, '21.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4953, 6574, 1, '37.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4954, 6575, 1, '22.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, '1.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, '18.0000', NULL, '35.5400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4959, 6580, 1, '9.0000', NULL, '328.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4960, 6581, 1, '0.0000', NULL, '0.0000');
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, '16.0000', NULL, '14.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4963, 6584, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4964, 6585, 1, '9.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, '24.0000', NULL, '41.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4968, 6589, 1, '8.0000', NULL, '121.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4969, 6590, 1, '85.0000', NULL, '25.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4970, 6591, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4971, 6592, 1, '228.0000', NULL, '3.1800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4972, 6593, 1, '5.0000', NULL, '1.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4973, 6594, 1, '74.0000', NULL, '9.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4974, 6595, 1, '81.0000', NULL, '7.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4975, 6596, 1, '21.0000', NULL, '18.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4976, 6597, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4977, 6598, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4978, 6599, 1, '5.0000', NULL, '16.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4979, 6600, 1, '29.0000', NULL, '12.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4980, 6601, 1, '16.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, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4983, 6604, 1, '529.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4984, 6605, 1, '148.0000', NULL, '5.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4985, 6606, 1, '50.0000', NULL, '15.5300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4986, 6607, 1, '117.0000', NULL, '16.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4987, 6608, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4988, 6609, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4989, 6610, 1, '62.0000', NULL, '70.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4990, 6611, 1, '20.0000', NULL, '8.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4991, 6612, 1, '9.0000', NULL, '15.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4992, 6613, 1, '189.0000', NULL, '45.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4993, 6614, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4994, 6615, 1, '71.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, '32.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, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4999, 6620, 1, '35.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5000, 6621, 1, '37.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5001, 6622, 1, '2.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, '2.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, '10.0000', NULL, '99.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5006, 6627, 1, '70.0000', NULL, '79.1500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5007, 6628, 1, '51.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, '17.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5010, 6631, 1, '29.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, '11.0000', NULL, '32.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5013, 6634, 1, '11.0000', NULL, '13.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5014, 6635, 1, '8.0000', NULL, '11.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5015, 6636, 1, '0.0000', NULL, '0.0000');
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, '4.0000', NULL, '24.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5019, 6640, 1, '0.0000', NULL, '0.0000');
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, '-9.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5022, 6643, 1, '35.0000', NULL, '5.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5023, 6644, 1, '41.0000', NULL, '4.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5024, 6645, 1, '162.0000', NULL, '3.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5025, 6646, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5026, 6647, 1, '33.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, '72.0000', NULL, '8.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5029, 6650, 1, '40.0000', NULL, '5.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5030, 6651, 1, '3.0000', NULL, '7.4400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5031, 6652, 1, '90.0000', NULL, '3.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5032, 6653, 1, '18.0000', NULL, '27.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5033, 6654, 1, '80.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5034, 6655, 1, '5.0000', NULL, '8.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5035, 6656, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5036, 6657, 1, '22.0000', NULL, '5.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5037, 6658, 1, '-2.0000', NULL, '65.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5038, 6659, 1, '6.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 (5041, 6662, 1, '596.0000', NULL, '4.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5042, 6663, 1, '312.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5043, 6664, 1, '-2.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5044, 6665, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5045, 6666, 1, '45.0000', NULL, '50.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5046, 6667, 1, '-20.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5047, 6668, 1, '22.0000', NULL, '8.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5048, 6669, 1, '17.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5049, 6670, 1, '66.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5050, 6671, 1, '80.0000', NULL, '7.1500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5051, 6672, 1, '16.0000', NULL, '4.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5052, 6673, 1, '70.0000', NULL, '4.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5053, 6674, 1, '317.0000', NULL, '4.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5054, 6675, 1, '-5.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, '287.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5057, 6678, 1, '31.0000', NULL, '14.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5058, 6679, 1, '7.0000', NULL, '9.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5059, 6680, 1, '5.0000', NULL, '8.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5060, 6681, 1, '71.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5061, 6682, 1, '70.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5062, 6683, 1, '6.0000', NULL, '8.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5063, 6684, 1, '29.0000', NULL, '29.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5064, 6685, 1, '678.0000', NULL, '0.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5065, 6686, 1, '18.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5066, 6687, 1, '40.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5067, 6688, 1, '12.0000', NULL, '80.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5068, 6689, 1, '126.0000', NULL, '3.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5069, 6690, 1, '36.0000', NULL, '8.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5070, 6691, 1, '50.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5071, 6692, 1, '15.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5072, 6693, 1, '1.0000', NULL, '57.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5073, 6694, 1, '8.0000', NULL, '52.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5074, 6695, 1, '210.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5075, 6696, 1, '471.0000', NULL, '4.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5076, 6697, 1, '44.0000', NULL, '10.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5077, 6698, 1, '29.0000', NULL, '13.4400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5078, 6699, 1, '199.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, '1.0000', NULL, '43.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5081, 6702, 1, '19.0000', NULL, '8.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5082, 6703, 1, '20.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, '33.0000', NULL, '15.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5085, 6706, 1, '0.0000', NULL, '0.0000');
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, '81.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5088, 6709, 1, '7.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, '16.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, '0.0000');
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, '0.0000', NULL, '0.0000');
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, '12.0000', NULL, '38.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5097, 6718, 1, '9.0000', NULL, '12.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5098, 6719, 1, '11.0000', NULL, '17.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5099, 6720, 1, '-2.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, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5104, 6725, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5105, 6726, 1, '4.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, '3.0000', NULL, '40.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5109, 6730, 1, '8.0000', NULL, '27.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5110, 6731, 1, '9.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, '0.0000', NULL, '0.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, '4.0000', NULL, '38.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5116, 6737, 1, '11.0000', NULL, '40.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5117, 6738, 1, '180.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5118, 6739, 1, '3.0000', NULL, '5.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5119, 6740, 1, '10.0000', NULL, '36.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5120, 6741, 1, '19.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, '17.0000', NULL, '9.9600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5124, 6745, 1, '1.0000', NULL, '12.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5125, 6746, 1, '22.0000', NULL, '10.5600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5126, 6747, 1, '0.0000', NULL, '0.0000');
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, '159.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5129, 6750, 1, '63.0000', NULL, '6.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5130, 6751, 1, '-1.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5131, 6752, 1, '3.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5132, 6753, 1, '76.0000', NULL, '85.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5133, 6754, 1, '414.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5134, 6755, 1, '6.0000', NULL, '5.4000');
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, '8.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, '46.0000', NULL, '13.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5143, 6764, 1, '85.0000', NULL, '6.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5144, 6765, 1, '55.0000', NULL, '59.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5145, 6766, 1, '53.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5146, 6767, 1, '54.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5147, 6768, 1, '34.0000', NULL, '5.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5148, 6769, 1, '67.0000', NULL, '0.0000');
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, '3.0000', NULL, '19.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5151, 6772, 1, '2.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, '19.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, '5.0000', NULL, '21.7400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5157, 6778, 1, '204.0000', NULL, '19.3400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5158, 6779, 1, '11.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, '36.0000', NULL, '58.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5164, 6785, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5165, 6786, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5166, 6787, 1, '0.0000', NULL, '0.0000');
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, '0.0000', NULL, '0.0000');
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, '150.0000', NULL, '56.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5172, 6793, 1, '18.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, '5.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, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5178, 6799, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5179, 6800, 1, '17.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, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5183, 6804, 1, '3.0000', NULL, '54.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5184, 6805, 1, '23.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, '9.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5187, 6808, 1, '3.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5188, 6809, 1, '75.0000', NULL, '13.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5189, 6810, 1, '18.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5190, 6811, 1, '29.0000', NULL, '23.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5191, 6812, 1, '22.0000', NULL, '26.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5192, 6813, 1, '109.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5193, 6814, 1, '10.0000', NULL, '61.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5194, 6815, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5195, 6816, 1, '-1.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5196, 6817, 1, '90.0000', NULL, '13.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5197, 6818, 1, '268.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5198, 6819, 1, '4.0000', NULL, '13.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5199, 6820, 1, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5200, 6821, 1, '37.0000', NULL, '65.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5201, 6822, 1, '630.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5202, 6823, 1, '79.0000', NULL, '10.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5203, 6824, 1, '16.0000', NULL, '18.4800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5204, 6825, 1, '61.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, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5208, 6829, 1, '17.0000', NULL, '29.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5209, 6830, 1, '46.0000', NULL, '29.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5210, 6831, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5211, 6832, 1, '398.0000', NULL, '2.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5212, 6833, 1, '160.0000', NULL, '6.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5213, 6834, 1, '99.0000', NULL, '5.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5214, 6835, 1, '42.0000', NULL, '3.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5215, 6836, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5216, 6837, 1, '16.0000', NULL, '87.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5217, 6838, 1, '125.0000', NULL, '17.7100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5218, 6839, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5219, 6840, 1, '35.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5220, 6841, 1, '84.0000', NULL, '2.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5221, 6842, 1, '20.0000', NULL, '4.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5222, 6843, 1, '14.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5223, 6844, 1, '22.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5224, 6845, 1, '14.0000', NULL, '34.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5225, 6846, 1, '143.0000', NULL, '11.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5226, 6847, 1, '15.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5227, 6848, 1, '10.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5228, 6849, 1, '20.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5229, 6850, 1, '35.0000', NULL, '2.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5230, 6851, 1, '58.0000', NULL, '26.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5231, 6852, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5232, 6853, 1, '2.0000', NULL, '23.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5233, 6854, 1, '70.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5234, 6855, 1, '23.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, '25.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, '500.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5239, 6860, 1, '194.0000', NULL, '16.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5242, 6863, 1, '7.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5243, 6864, 1, '4902.0000', NULL, '14.4690');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5244, 6865, 1, '39.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5245, 6866, 1, '-4.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5246, 6867, 1, '18.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5247, 6868, 1, '11.0000', NULL, '3.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5254, 6874, 1, '32.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5255, 6875, 1, '4.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5256, 6876, 1, '100.0000', NULL, '0.9800');


#
# 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;

